Skip to content
Snippets Groups Projects
Commit 618b1880 authored by rswindell's avatar rswindell
Browse files

Don't log a "!TIMEOUT waiting for request" message if the client in fact

only disconnected.
parent d0885a3f
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,10 @@ while(client.socket.is_connected && !quit) {
cmdline = client.socket.recvline(1024 /*maxlen*/, 300 /*timeout*/);
if(cmdline==null) {
log(LOG_WARNING,"!TIMEOUT waiting for request");
if(client.socket.is_connected)
log(LOG_WARNING, "!TIMEOUT waiting for request");
else
log(LOG_WARNING, "!client disconnected");
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment