commit 477224be5c0d5e117d26d1181647bf9697c12c79 from: Alexander Barton date: Sat Feb 12 22:24:26 2011 UTC Enhance logging on "write buffer overflow" commit - 493ccd57f41bea8c9bca5311ca597b37fadc9e7f commit + 477224be5c0d5e117d26d1181647bf9697c12c79 blob - 032a6e91e08b83f41bfd220ad8d527ddeb76f6c1 blob + e92240b6ff1548732f53e7d09e236b2a42ed23a9 --- src/ngircd/conn.c +++ src/ngircd/conn.c @@ -906,8 +906,8 @@ Conn_Write( CONN_ID Idx, char *Data, size_t Len ) if (array_bytes(&My_Connections[Idx].wbuf) + Len >= writebuf_limit) { Log(LOG_NOTICE, - "Write buffer overflow (connection %d, size %lu byte)!", - Idx, + "Write buffer overflow (connection %d, limit is %lu bytes, %lu bytes new, %lu bytes pending)!", + Idx, writebuf_limit, Len, (unsigned long)array_bytes(&My_Connections[Idx].wbuf)); Conn_Close(Idx, "Write buffer overflow!", NULL, false); return false;