commit - b545d38ae4458257be4de9031d4d3501690ced9c
commit + 9b59f043c8bc0eb0e88cb31158c61cccdf67f23b
blob - eacbe5ae0fa5616a6a66528e2fefb1e8eb603f30
blob + 9752a6191c7e2da5b0df64779e9cc28ad1e6241c
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
* 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)
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) {