diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-07 05:32:21 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-07 05:32:21 +0000 |
commit | b1e78499cbd4e3855c54abc355be19e62502ac52 (patch) | |
tree | 978400028654a1fa070770b7fd27274dca5f06d2 /src/unreal32.c | |
parent | a7b79e36cd487faad8696a1c4a86e301b5965a74 (diff) |
BUILD : 1.7.5 (376) BUGS : N/A NOTES : CS INFO - DrStein, init.c typo - DrStein, Bahamut +j support - TSL, more protocol clean up
git-svn-id: svn://svn.anope.org/anope/trunk@376 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@246 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/unreal32.c')
-rw-r--r-- | src/unreal32.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/unreal32.c b/src/unreal32.c index 062a57caf..43054628e 100644 --- a/src/unreal32.c +++ b/src/unreal32.c @@ -20,6 +20,10 @@ const char version_protocol[] = "UnrealIRCd 3.2+"; +/* Not all ircds use +f for their flood/join throttle system */ +const char flood_mode_char_set[] = "+f"; /* mode char for FLOOD mode on set */ +const char flood_mode_char_remove[] = "-f"; /* mode char for FLOOD mode on remove */ + IRCDVar ircd[] = { {"UnrealIRCd 3.2.x", /* ircd name */ "+oS", /* nickserv mode */ @@ -452,6 +456,7 @@ void moduleAddIRCDMsgs(void) { m = createMessage("401", NULL); addCoreMessage(IRCD,m); m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("451", anope_event_null); addCoreMessage(IRCD,m); m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); if (UseTokens) { m = createMessage("6", anope_event_away); addCoreMessage(IRCD,m); |