closesocket The Windows Sockets closesocket function closes an existing socket.
VB4-32,5,6
Declare Function closesocket Lib "wsock32.dll" (ByVal s As Long) As Long |
VB.NET
System.Net.Sockets.Socket.Close |
Operating Systems Supported |
Requires Windows Sockets 1.1 |
- s
[in] A descriptor identifying a socket to close. |
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. |
|