From 5407cec41c6331f985d02dc1800a43065f60080c Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Mon, 13 Jan 2014 20:54:58 +0100 Subject: Removed shutdown() from socket closing. It's not there for Windows and everything seems fine, the client doesn't shutdown either, so why should we be polite. Fixes #537. --- src/OSSupport/Socket.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/OSSupport/Socket.cpp b/src/OSSupport/Socket.cpp index f25f800c2..d511e5487 100644 --- a/src/OSSupport/Socket.cpp +++ b/src/OSSupport/Socket.cpp @@ -72,10 +72,6 @@ void cSocket::CloseSocket() #else // _WIN32 - if (shutdown(m_Socket, SHUT_RDWR) != 0)//SD_BOTH); - { - LOGWARN("Error on shutting down socket %d (%s): %s", m_Socket, m_IPString.c_str(), GetLastErrorString().c_str()); - } if (close(m_Socket) != 0) { LOGWARN("Error closing socket %d (%s): %s", m_Socket, m_IPString.c_str(), GetLastErrorString().c_str()); -- cgit v1.2.3