|
closesocket
The Windows Sockets closesocket function closes a socket.
int closesocket (
Parameters
s
[in] A descriptor identifying a socket.
Remarks
This function closes a socket. More precisely, it releases the socket
descriptor s, so that further references to s will fail with the error WSAENOTSOCK. If this is the last reference to an
underlying socket, the associated naming information and queued data are
discarded. Any pending blocking, asynchronous calls issued by any thread in this process
are canceled without posting any notification messages, or signaling any event
objects. Any pending overlapped send and receive operations (WSASend/WSASendTo/WSARecv/WSARecvFrom with an overlapped socket) issued by any thread in this process are also
canceled without setting the event object or invoking the completion routine, if
specified. In this case, the pending overlapped operations fail with the error
status WSA_OPERATION_ABORTED. An application should always have a matching call
to closesocket for each successful call to socket to return socket resources to the system.
The semantics of closesocket are affected by the socket options SO_LINGER and SO_DONTLINGER as follows
(Note: by default SO_DONTLINGER is enabled. That is, SO_LINGER is disabled):
Option
| Interval
| Type of close
| Wait for close?
| SO_DONTLINGER
| Don't care
| Graceful
| No
| SO_LINGER
| Zero
| Hard
| No
| SO_LINGER
| Nonzero
| Graceful
| Yes
|
If SO_LINGER is set (that is, the l_onoff field of the linger structure is nonzero; see Multipoint and Multicast Semantics) with a zero time-out interval (l_linger is zero), closesocket is not blocked even if queued data has not yet been sent or acknowledged.
This is called a "hard" or "abortive" close, because the socket's virtual circuit
is reset immediately, and any unsent data is lost. Any recv call on the remote side of the circuit will fail with WSAECONNRESET.
If SO_LINGER is set with a nonzero time-out interval on a blocking socket, the closesocket call blocks on a blocking socket until the remaining data has been sent or
until the time-out expires. This is called a graceful disconnect. If the time-out
expires before all data has been sent, the Windows Sockets implementation
terminates the connection before closesocket returns.
Enabling SO_LINGER with a nonzero time-out interval on a nonblocking socket is
not recommended. In this case, the call to closesocket will fail with an error of WSAEWOULDBLOCK if the close operation cannot be
completed immediately. If closesocket fails with WSAEWOULDBLOCK the socket handle is still valid, and a disconnect
is not initiated. The application must call closesocket again to close the socket, although closesocket can continue to fail unless the application disables SO_DONTLINGER, enables
SO_LINGER with a zero time-out, or calls shutdown to initiate closure.
If SO_DONTLINGER is set on a stream socket (that is, the l_onoff field of the linger structure is zero; see Multipoint and Multicast Semantics) the closesocket call will return immediately. However, any data queued for transmission will
be sent if possible before the underlying socket is closed. This is also called
a graceful disconnect. Note that in this case, the Windows Sockets provider
cannot release the socket and other resources for an arbitrary period, which can
affect applications which expect to use all available sockets. This is the
default behavior.
Note To assure that all data is sent and received on a connection, an application
should call shutdown before calling closesocket (see Graceful shutdown, linger options and socket closure for more information). Also note, FD_CLOSE will not be posted after closesocket is called.
Here is a summary of closesocket behavior:
- if SO_DONTLINGER enabled (the default setting) it always returns immediately
connection is gracefully closed "in the background"
- if SO_LINGER enabled with a zero time-out: it always returns immediately -
connection is reset/terminated
- if SO_LINGER enabled with nonzero time-out:
with blocking socket it blocks until all data sent or time-out expires
with nonblocking socket it returns immediately indicating failure
For additional information please see Graceful shutdown, linger options and socket closure for more information.
Return Values
If no error occurs, closesocket returns zero. Otherwise, a value of SOCKET_ERROR is returned, and a specific
error code can be retrieved by calling WSAGetLastError.
Error Codes
WSANOTINITIALISED
| A successful WSAStartup must occur before using this function.
| WSAENETDOWN
| The network subsystem has failed.
| WSAENOTSOCK
| The descriptor is not a socket.
| WSAEINPROGRESS
| A blocking Windows Sockets 1.1 call is in progress, or the service provider is
still processing a callback function.
| WSAEINTR
| The (blocking) call was canceled through WSACancelBlockingCall.
| WSAEWOULDBLOCK
| The socket is marked as nonblocking and SO_LINGER is set to a nonzero time-out
value.
|
See Also
accept, ioctlsocket, setsockopt, socket, WSAAsyncSelect, WSADuplicateSocket
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime without manual coding. Full C# source codes are available More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|