赞
踩
Error code | Meaning |
---|---|
The virtual circuit was terminated due to a time-out or other failure. | |
For a stream socket, the virtual circuit was reset by the remote side. The application should close the socket as it is no longer usable. For a UDP datagram socket, this error would indicate that a previous send operation resulted in an ICMP "Port Unreachable" message. | |
Socket s is message oriented and the virtual circuit was gracefully closed by the remote side. | |
The lpBuffers parameter is not completely contained in a valid part of the user address space. | |
A blocking Windows Sockets 1.1 call is in progress, or the service provider is still processing a callback function. | |
| |
The socket has not been bound (for example, with bind). | |
The message was too large to fit into the specified buffer and (for unreliable protocols only) any trailing portion of the message that did not fit into the buffer has been discarded. | |
| |
For a connection-oriented socket, this error indicates that the connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. For a datagram socket, this error indicates that the time to live has expired. | |
| |
The descriptor is not a socket. | |
MSG_OOB was specified, but the socket is not stream-style such as type SOCK_STREAM, OOB data is not supported in the communication domain associated with this socket, or the socket is unidirectional and supports only send operations. | |
The socket has been shut down; it is not possible to call WSARecv on a socket after shutdown has been invoked with howset to SD_RECEIVE or SD_BOTH. | |
The connection has been dropped because of a network failure or because the peer system failed to respond. | |
Overlapped sockets: there are too many outstanding overlapped I/O requests. Nonoverlapped sockets: The socket is marked as nonblocking and the receive operation cannot be completed immediately. 重叠套接口:太多重叠的输入/输出请求。非重叠套接口:套接口被标志为非阻塞,但是操作不能立即完成。 | |
| |
An overlapped operation was successfully initiated and completion will be indicated at a later time. | |
The overlapped operation has been canceled due to the closure of the socket. |
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。