socket.shutdown vs socket.close - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T07:34:44Z http://stackoverflow.com/feeds/question/409783 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/409783/socket-shutdown-vs-socket-close 4 socket.shutdown vs socket.close Jason Baker 2009-01-03T20:37:55Z 2009-08-25T11:39:46Z <p>I recently saw a bit of code that looked like this (with sock being a socket object of course):</p> <pre><code>sock.shutdown(socket.SHUT_RDWR) sock.close() </code></pre> <p>What exactly is the purpose of calling shutdown on the socket and then closing it? If it makes a difference, this socket is being used for non-blocking IO.</p> http://stackoverflow.com/questions/409783/socket-shutdown-vs-socket-close/409843#409843 4 Answer by Bob Nadler for socket.shutdown vs socket.close Bob Nadler 2009-01-03T21:10:08Z 2009-01-03T21:10:08Z <p>Here's one <a href="http://publib.boulder.ibm.com/infocenter/systems/index.jsp?topic=/com.ibm.aix.progcomm/doc/progcomc/skt_shutdn.htm" rel="nofollow">explanation</a>:</p> <blockquote> <p>Once a socket is no longer required, the calling program can discard the socket by applying a close subroutine to the socket descriptor. If a reliable delivery socket has data associated with it when a close takes place, the system continues to attempt data transfer. However, if the data is still undelivered, the system discards the data. Should the application program have no use for any pending data, it can use the shutdown subroutine on the socket prior to closing it.</p> </blockquote> http://stackoverflow.com/questions/409783/socket-shutdown-vs-socket-close/410231#410231 7 Answer by gridzbi for socket.shutdown vs socket.close gridzbi 2009-01-04T01:28:29Z 2009-01-04T01:33:33Z <p>Explanation of shutdown and close: <a href="http://msdn.microsoft.com/en-us/library/ms738547(VS.85).aspx" rel="nofollow">Graceful shutdown (msdn)</a></p> <p>Shutdown (in your case) indicates to the other end of the connection there is no further intention to read from or write to the socket. Then close frees up any memory associated with the socket.</p> <p>Omitting shutdown may cause the socket to linger in the OSs stack until the connection has been closed gracefully.</p> <p>IMO the names 'shutdown' and 'close' are misleading, 'close' and 'destroy' would emphasise their differences.</p> http://stackoverflow.com/questions/409783/socket-shutdown-vs-socket-close/410271#410271 2 Answer by Ray Tayek for socket.shutdown vs socket.close Ray Tayek 2009-01-04T01:52:19Z 2009-01-04T01:52:19Z <p>there are some flavours of shutdown: <a href="http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.shutdown.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.shutdown.aspx</a>. *nix is similar.</p> http://stackoverflow.com/questions/409783/socket-shutdown-vs-socket-close/598759#598759 9 Answer by Robert S. Barnes for socket.shutdown vs socket.close Robert S. Barnes 2009-02-28T21:58:05Z 2009-08-25T11:39:46Z <p>Calling <code>close</code> and <code>shutdown</code> have two different affects on the underlying socket.</p> <p>The first thing to point out is that the socket is a resource in the underlying OS and <strong>multiple processes can have a handle for the same underlying socket.</strong></p> <p>When you call <code>close</code> it decrements the handle count by one and if the handle count has reached zero then the socket and associated connection goes through the normal close procedure (effectively sending a FIN / EOF to the peer) and the socket is deallocated.</p> <p>The thing to pay attention to here is that if the handle count does not reach zero because another process still has a handle to the socket then the connection <strong>is not closed and the socket is not deallocated.</strong></p> <p>On the other hand calling <code>shutdown</code> for reading and writing closes the underlying connection and sends a FIN / EOF to the peer regardless of how many processes have handles to the socket. However, it <strong>does not</strong> deallocate the socket and you still need to call close afterward.</p>