added recover command to recover zombies from user side
[ircu2.10.12-pk.git] / ircd / ircd.c
index 91ab9b41f6d5de57e42b85ce7153e62713039b5f..ad6ae5fb5f9699e4f7e521575496efa005eb9e8a 100644 (file)
@@ -343,8 +343,8 @@ static void check_pings(struct Event* ev) {
     /* We don't need to check zombies here */
     if (IsNotConn(cptr)) {
       assert(IsUser(cptr));
-      /* for now: reap after fixed time (15 minutes) */
-      if ((CurrentTime - cli_user(cptr)->last) >= 900) {
+      /* for now: reap after fixed time (5 minutes) */
+      if ((CurrentTime - cli_user(cptr)->last) >= 300) {
         SetFlag(cptr, FLAG_DEADSOCKET);
         /* this will be used as exit message */
         ircd_strncpy(cli_info(cptr), "Ping timeout", REALLEN);