commit 9b59f043c8bc0eb0e88cb31158c61cccdf67f23b from: David Kingston via: Florian Westphal date: Thu Apr 23 19:39:45 2009 UTC allow ping timeout quit messages to show the timeout value commit - b545d38ae4458257be4de9031d4d3501690ced9c commit + 9b59f043c8bc0eb0e88cb31158c61cccdf67f23b blob - eacbe5ae0fa5616a6a66528e2fefb1e8eb603f30 blob + 9752a6191c7e2da5b0df64779e9cc28ad1e6241c --- src/ngircd/conn.c +++ src/ngircd/conn.c @@ -1540,6 +1540,7 @@ Check_Connections(void) * if this doesn't help either, disconnect client. */ CLIENT *c; CONN_ID i; + char msg[64]; for (i = 0; i < Pool_Size; i++) { if (My_Connections[i].sock < 0) @@ -1559,8 +1560,8 @@ Check_Connections(void) LogDebug ("Connection %d: Ping timeout: %d seconds.", i, Conf_PongTimeout); - Conn_Close(i, NULL, "Ping timeout", - true); + snprintf(msg, sizeof(msg), "Ping timeout: %d seconds", Conf_PongTimeout); + Conn_Close(i, NULL, msg, true); } } else if (My_Connections[i].lastdata < time(NULL) - Conf_PingTimeout) {