We have a report that irc.freenode.net requires 0.5sec of anti-flood delay...
authorEric S. Raymond <esr@thyrsus.com>
Tue, 2 Oct 2012 17:08:34 +0000 (13:08 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 2 Oct 2012 17:08:34 +0000 (13:08 -0400)
...and 0.2sec is not enough.

irkerd

diff --git a/irkerd b/irkerd
index 1dc8489774fbcc8998bb97379b3b344f432b4309..eb51306112a70ec9921b0c4a0ed0d9c78060e7ff 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -33,7 +33,7 @@ PING_TTL = (15 * 60)          # Time to live, seconds from last PING
 DISCONNECT_TTL = (24 * 60 * 60)        # Time to live, seconds from last connect
 UNSEEN_TTL = 60                        # Time to live, seconds since first request
 CHANNEL_MAX = 18               # Max channels open per socket (default)
-ANTI_FLOOD_DELAY = 0.125       # Anti-flood delay after transmissions, seconds
+ANTI_FLOOD_DELAY = 0.5         # Anti-flood delay after transmissions, seconds
 ANTI_BUZZ_DELAY = 0.09         # Anti-buzz delay after queue-empty check
 
 # No user-serviceable parts below this line