Raise <connflood:bootwait> from 10 seconds to 2 minutes.

Many clients don't reconnect automatically and it can take a while
for them to reconnect.
This commit is contained in:
Peter Powell 2019-10-24 15:22:46 +01:00
parent 493acff4eb
commit 95b8763734
2 changed files with 2 additions and 2 deletions

View File

@ -659,7 +659,7 @@
# the throttling when the server just booted.
#
#<connflood period="30" maxconns="3" timeout="30"
# quitmsg="Throttled" bootwait="10">
# quitmsg="Throttled" bootwait="2m">
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
# Custom prefixes: Allows for channel prefixes to be configured.

View File

@ -54,7 +54,7 @@ public:
quitmsg = tag->getString("quitmsg");
/* seconds to wait when the server just booted */
boot_wait = tag->getDuration("bootwait", 10);
boot_wait = tag->getDuration("bootwait", 60*2);
first = ServerInstance->Time();
}