diff options
Diffstat (limited to 'src/common/socket.c')
-rw-r--r-- | src/common/socket.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/socket.c b/src/common/socket.c index 7759a67ee..5fb9ead9e 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -171,7 +171,7 @@ int recv_to_fifo(int fd) if( len == SOCKET_ERROR ) {//An exception has occured if( s_errno != S_EWOULDBLOCK ) { - ShowDebug("recv_to_fifo: code %d, closing connection #%d\n", s_errno, fd); + //ShowDebug("recv_to_fifo: code %d, closing connection #%d\n", s_errno, fd); set_eof(fd); } return 0; @@ -201,9 +201,9 @@ int send_from_fifo(int fd) len = send(fd, (const char *) session[fd]->wdata, (int)session[fd]->wdata_size, 0); if( len == SOCKET_ERROR ) - { + {//An exception has occured if( s_errno != S_EWOULDBLOCK ) { - ShowDebug("send_from_fifo: error %d, ending connection #%d\n", s_errno, fd); + //ShowDebug("send_from_fifo: error %d, ending connection #%d\n", s_errno, fd); session[fd]->wdata_size = 0; //Clear the send queue as we can't send anymore. [Skotlex] set_eof(fd); } |