Experimental code to recover from a half dead chatlink.

This commit is contained in:
Michiel Broek 2005-12-07 21:29:04 +00:00
parent 5755781972
commit cdc3ece87a

View File

@ -945,6 +945,7 @@ int command_pass(char *hostname, char *parameters)
if (tnsl->state == NCS_CONNECT) {
send_msg(tnsl, "401: PASS: Already registered\r\n");
tnsl->halfdead++; /* Count them */
srvchg = TRUE;
return 401;
}
@ -1493,7 +1494,11 @@ int do_command(char *hostname, char *command, char *parameters)
/*
* Just accept, but reset halfdead counter.
*/
tnsl->halfdead = 0;
if (tnsl->halfdead) {
Syslog('r', "Reset halfdead counter");
tnsl->halfdead = 0;
srvchg = TRUE;
}
return 0;
}