aboutsummaryrefslogtreecommitdiffstats
path: root/irc_send.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2011-03-27 23:13:09 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2011-03-27 23:13:09 +0100
commitf01bc6f174e15d5dcc530a0136a556bfbc22d236 (patch)
treed41d72d489cd92ea74b14063156b336c8fe6db50 /irc_send.c
parentce617f0a445df1201808a9cd29722a9cf6c96b95 (diff)
Include FLOOD=0/9999 (min time between msgs/max burst size) in 005. This
is by no means a standard ATM but let's try to make it one. :-)
Diffstat (limited to 'irc_send.c')
-rw-r--r--irc_send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_send.c b/irc_send.c
index 02f4b5d4..681fc95f 100644
--- a/irc_send.c
+++ b/irc_send.c
@@ -45,7 +45,7 @@ void irc_send_login( irc_t *irc )
irc_send_num( irc, 4, "%s %s %s %s", irc->root->host, BITLBEE_VERSION, UMODES UMODES_PRIV, CMODES );
irc_send_num( irc, 5, "PREFIX=(ohv)@%%+ CHANTYPES=%s CHANMODES=,,,%s NICKLEN=%d CHANNELLEN=%d "
"NETWORK=BitlBee SAFELIST CASEMAPPING=rfc1459 MAXTARGETS=1 WATCH=128 "
- ":are supported by this server",
+ "FLOOD=0/9999 :are supported by this server",
CTYPES, CMODES, MAX_NICK_LENGTH - 1, MAX_NICK_LENGTH - 1 );
irc_send_motd( irc );
}