Browse Source

Adds shadowircd support (fixes support for ircxpro and ignition)

Change-Id: I4c989a4f865f72d8c0d617ef7ba9debedb54ad91
Reviewed-on: http://gerrit.dmdirc.com/914
Automatic-Compile: DMDirc Local Commits <dmdirc@googlemail.com>
Reviewed-by: Gregory Holmes <greg@dmdirc.com>
tags/0.6.3
Gregory Holmes 14 years ago
parent
commit
fdea2529aa
1 changed files with 5 additions and 3 deletions
  1. 5
    3
      src/com/dmdirc/parser/irc/ServerType.java

+ 5
- 3
src/com/dmdirc/parser/irc/ServerType.java View File

@@ -110,9 +110,11 @@ public enum ServerType {
110 110
     /** TR-IRCD. */
111 111
     TRIRCD("tr-ircd", "tr-ircd.*"),
112 112
     /** Ignition server. */
113
-    IGNITION("ignition", "ignitionServer.*"),
113
+    IGNITION("ignition", "ignitionserver.*"),
114 114
     /** IRCXPRO. */
115
-    IRCXPRO("ircxpro", "IRCXPRO.*"),
115
+    IRCXPRO("ircxpro", "ircxpro.*"),
116
+    /** ShadowIRCD. */
117
+    SHADOW("shadowircd", "shadowircd*"),
116 118
     /** IRCNet. */
117 119
     IRCNET("ircnet", "ircnet", null, MatchType.NETWORK),
118 120
     /** Star Chat. */
@@ -124,7 +126,7 @@ public enum ServerType {
124 126
     /** Pastiche. */
125 127
     PASTICHE("bitlbee", "ircd-pastiche", null, MatchType.RAW002),
126 128
     /** Othernet. */
127
-    OTHERNET("othernet", ".*Othernet.*"),
129
+    OTHERNET("othernet", ".*othernet.*"),
128 130
     /** Generic IRCD. */
129 131
     GENERIC("generic", "", null, MatchType.NEVER);
130 132
 

Loading…
Cancel
Save