Difference between revisions of "Windows Socket Error Codes"

From ATTWiki
Jump to: navigation, search
Line 1: Line 1:
<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in'>
+
<span
 
+
<div class=WordSection1>
+
 
+
<p class=MsoNormal style='margin-bottom:0in;margin-bottom:.0001pt;mso-line-height-alt:
+
14.4pt;mso-outline-level:1'><a name="OLE_LINK2"></a><a name="OLE_LINK1"><span
+
 
style='mso-bookmark:OLE_LINK2'><span style='font-size:36.0pt;font-family:"Segoe UI Light","sans-serif";
 
style='mso-bookmark:OLE_LINK2'><span style='font-size:36.0pt;font-family:"Segoe UI Light","sans-serif";
 
mso-fareast-font-family:"Times New Roman";mso-bidi-font-family:"Times New Roman";
 
mso-fareast-font-family:"Times New Roman";mso-bidi-font-family:"Times New Roman";

Revision as of 16:18, 28 October 2013

Windows Sockets Error Codes<o:p></o:p></a></p>

Most Windows Sockets 2 functions do not return the specific cause of an error when the function returns. For information, see the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/cc507522(v=vs.85).aspx">Handling Winsock Errors</a> topic.<o:p></o:p>

The <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741580(v=vs.85).aspx">WSAGetLastError</a> function returns the last error that occurred for the calling thread. When a particular Windows Sockets function indicates an error has occurred, this function should be called immediately to retrieve the extended error code for the failing function call. These error codes and a short text description associated with an error code are defined in the Winerror.h header file. The <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms679351(v=vs.85).aspx">FormatMessage</a> function can be used to obtain the message string for the returned error.<o:p></o:p>

For information on how to handle error codes when porting socket applications to Winsock, see <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737828(v=vs.85).aspx">Error Codes - errno, h_errno and WSAGetLastError</a>.<o:p></o:p>

The following list describes the possible error codes returned by the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741580(v=vs.85).aspx">WSAGetLastError</a> function. Errors are listed in numerical order with the error macro name. Some error codes defined in the Winsock2.h header file are not returned from any function.<o:p></o:p>

Return code/value<o:p></o:p>

Description<o:p></o:p>

WSA_INVALID_HANDLE<o:p></o:p>

6<o:p></o:p>

Specified event object handle is invalid.<o:p></o:p>

An application attempts to use an event object, but the specified handle is not valid. Note that this error is returned by the operating system, so the error number may change in future releases of Windows.<o:p></o:p>

WSA_NOT_ENOUGH_MEMORY<o:p></o:p>

8<o:p></o:p>

Insufficient memory available.<o:p></o:p>

An application used a Windows Sockets function that directly maps to a Windows function. The Windows function is indicating a lack of required memory resources. Note that this error is returned by the operating system, so the error number may change in future releases of Windows.<o:p></o:p>

WSA_INVALID_PARAMETER<o:p></o:p>

87<o:p></o:p>

One or more parameters are invalid.<o:p></o:p>

An application used a Windows Sockets function which directly maps to a Windows function. The Windows function is indicating a problem with one or more parameters. Note that this error is returned by the operating system, so the error number may change in future releases of Windows.<o:p></o:p>

WSA_OPERATION_ABORTED<o:p></o:p>

995<o:p></o:p>

Overlapped operation aborted.<o:p></o:p>

An overlapped operation was canceled due to the closure of the socket, or the execution of the SIO_FLUSH command in <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741621(v=vs.85).aspx">WSAIoctl</a>. Note that this error is returned by the operating system, so the error number may change in future releases of Windows.<o:p></o:p>

WSA_IO_INCOMPLETE<o:p></o:p>

996<o:p></o:p>

Overlapped I/O event object not in signaled state.<o:p></o:p>

The application has tried to determine the status of an overlapped operation which is not yet completed. Applications that use<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741582(v=vs.85).aspx">WSAGetOverlappedResult</a> (with the fWait flag set to FALSE) in a polling mode to determine when an overlapped operation has completed, get this error code until the operation is complete. Note that this error is returned by the operating system, so the error number may change in future releases of Windows.<o:p></o:p>

WSA_IO_PENDING<o:p></o:p>

997<o:p></o:p>

Overlapped operations will complete later.<o:p></o:p>

The application has initiated an overlapped operation that cannot be completed immediately. A completion indication will be given later when the operation has been completed. Note that this error is returned by the operating system, so the error number may change in future releases of Windows.<o:p></o:p>

WSAEINTR<o:p></o:p>

10004<o:p></o:p>

Interrupted function call.<o:p></o:p>

A blocking operation was interrupted by a call to<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741547(v=vs.85).aspx">WSACancelBlockingCall</a>.<o:p></o:p>

WSAEBADF<o:p></o:p>

10009<o:p></o:p>

File handle is not valid.<o:p></o:p>

The file handle supplied is not valid.<o:p></o:p>

WSAEACCES<o:p></o:p>

10013<o:p></o:p>

Permission denied.<o:p></o:p>

An attempt was made to access a socket in a way forbidden by its access permissions. An example is using a broadcast address for <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx">sendto</a> without broadcast permission being set using <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx">setsockopt</a>(SO_BROADCAST).<o:p></o:p>

Another possible reason for the WSAEACCES error is that when the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737550(v=vs.85).aspx">bind</a>function is called (on Windows NT 4.0 with SP4 and later), another application, service, or kernel mode driver is bound to the same address with exclusive access. Such exclusive access is a new feature of Windows NT 4.0 with SP4 and later, and is implemented by using the<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/cc150667(v=vs.85).aspx">SO_EXCLUSIVEADDRUSE</a> option.<o:p></o:p>

WSAEFAULT<o:p></o:p>

10014<o:p></o:p>

Bad address.<o:p></o:p>

The system detected an invalid pointer address in attempting to use a pointer argument of a call. This error occurs if an application passes an invalid pointer value, or if the length of the buffer is too small. For instance, if the length of an argument, which is a <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740496(v=vs.85).aspx">sockaddr</a> structure, is smaller than the sizeof(sockaddr).<o:p></o:p>

WSAEINVAL<o:p></o:p>

10022<o:p></o:p>

Invalid argument.<o:p></o:p>

Some invalid argument was supplied (for example, specifying an invalid level to the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx">setsockopt</a> function). In some instances, it also refers to the current state of the socket—for instance, calling <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737526(v=vs.85).aspx">accept</a> on a socket that is not listening.<o:p></o:p>

WSAEMFILE<o:p></o:p>

10024<o:p></o:p>

Too many open files.<o:p></o:p>

Too many open sockets. Each implementation may have a maximum number of socket handles available, either globally, per process, or per thread.<o:p></o:p>

WSAEWOULDBLOCK<o:p></o:p>

10035<o:p></o:p>

Resource temporarily unavailable.<o:p></o:p>

This error is returned from operations on nonblocking sockets that cannot be completed immediately, for example <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740121(v=vs.85).aspx">recv</a> when no data is queued to be read from the socket. It is a nonfatal error, and the operation should be retried later. It is normal for WSAEWOULDBLOCK to be reported as the result from calling <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737625(v=vs.85).aspx">connect</a> on a nonblocking SOCK_STREAM socket, since some time must elapse for the connection to be established.<o:p></o:p>

WSAEINPROGRESS<o:p></o:p>

10036<o:p></o:p>

Operation now in progress.<o:p></o:p>

A blocking operation is currently executing. Windows Sockets only allows a single blocking operation—per- task or thread—to be outstanding, and if any other function call is made (whether or not it references that or any other socket) the function fails with the WSAEINPROGRESS error.<o:p></o:p>

WSAEALREADY<o:p></o:p>

10037<o:p></o:p>

Operation already in progress.<o:p></o:p>

An operation was attempted on a nonblocking socket with an operation already in progress—that is, calling <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737625(v=vs.85).aspx">connect</a> a second time on a nonblocking socket that is already connecting, or canceling an asynchronous request (WSAAsyncGetXbyY) that has already been canceled or completed.<o:p></o:p>

WSAENOTSOCK<o:p></o:p>

10038<o:p></o:p>

Socket operation on nonsocket.<o:p></o:p>

An operation was attempted on something that is not a socket. Either the socket handle parameter did not reference a valid socket, or for<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740141(v=vs.85).aspx">select</a>, a member of an fd_set was not valid.<o:p></o:p>

WSAEDESTADDRREQ<o:p></o:p>

10039<o:p></o:p>

Destination address required.<o:p></o:p>

A required address was omitted from an operation on a socket. For example, this error is returned if <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx">sendto</a> is called with the remote address of ADDR_ANY.<o:p></o:p>

WSAEMSGSIZE<o:p></o:p>

10040<o:p></o:p>

Message too long.<o:p></o:p>

A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram was smaller than the datagram itself.<o:p></o:p>

WSAEPROTOTYPE<o:p></o:p>

10041<o:p></o:p>

Protocol wrong type for socket.<o:p></o:p>

A protocol was specified in the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740506(v=vs.85).aspx">socket</a> function call that does not support the semantics of the socket type requested. For example, the ARPA Internet UDP protocol cannot be specified with a socket type of SOCK_STREAM.<o:p></o:p>

WSAENOPROTOOPT<o:p></o:p>

10042<o:p></o:p>

Bad protocol option.<o:p></o:p>

An unknown, invalid or unsupported option or level was specified in a<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms738544(v=vs.85).aspx">getsockopt</a> or <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx">setsockopt</a> call.<o:p></o:p>

WSAEPROTONOSUPPORT<o:p></o:p>

10043<o:p></o:p>

Protocol not supported.<o:p></o:p>

The requested protocol has not been configured into the system, or no implementation for it exists. For example, a <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740506(v=vs.85).aspx">socket</a> call requests a SOCK_DGRAM socket, but specifies a stream protocol.<o:p></o:p>

WSAESOCKTNOSUPPORT<o:p></o:p>

10044<o:p></o:p>

Socket type not supported.<o:p></o:p>

The support for the specified socket type does not exist in this address family. For example, the optional type SOCK_RAW might be selected in a<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740506(v=vs.85).aspx">socket</a> call, and the implementation does not support SOCK_RAW sockets at all.<o:p></o:p>

WSAEOPNOTSUPP<o:p></o:p>

10045<o:p></o:p>

Operation not supported.<o:p></o:p>

The attempted operation is not supported for the type of object referenced. Usually this occurs when a socket descriptor to a socket that cannot support this operation is trying to accept a connection on a datagram socket.<o:p></o:p>

WSAEPFNOSUPPORT<o:p></o:p>

10046<o:p></o:p>

Protocol family not supported.<o:p></o:p>

The protocol family has not been configured into the system or no implementation for it exists. This message has a slightly different meaning from WSAEAFNOSUPPORT. However, it is interchangeable in most cases, and all Windows Sockets functions that return one of these messages also specify WSAEAFNOSUPPORT.<o:p></o:p>

WSAEAFNOSUPPORT<o:p></o:p>

10047<o:p></o:p>

Address family not supported by protocol family.<o:p></o:p>

An address incompatible with the requested protocol was used. All sockets are created with an associated address family (that is, AF_INET for Internet Protocols) and a generic protocol type (that is, SOCK_STREAM). This error is returned if an incorrect protocol is explicitly requested in the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740506(v=vs.85).aspx">socket</a> call, or if an address of the wrong family is used for a socket, for example, in <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx">sendto</a>.<o:p></o:p>

WSAEADDRINUSE<o:p></o:p>

10048<o:p></o:p>

Address already in use.<o:p></o:p>

Typically, only one usage of each socket address (protocol/IP address/port) is permitted. This error occurs if an application attempts to<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737550(v=vs.85).aspx">bind</a> a socket to an IP address/port that has already been used for an existing socket, or a socket that was not closed properly, or one that is still in the process of closing. For server applications that need to bindmultiple sockets to the same port number, consider using <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx">setsockopt</a>(SO_REUSEADDR). Client applications usually need not call bind at all—<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737625(v=vs.85).aspx">connect</a> chooses an unused port automatically. When bind is called with a wildcard address (involving ADDR_ANY), a WSAEADDRINUSE error could be delayed until the specific address is committed. This could happen with a call to another function later, including connect<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms739168(v=vs.85).aspx">listen</a>,<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741559(v=vs.85).aspx">WSAConnect</a>, or <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741628(v=vs.85).aspx">WSAJoinLeaf</a>.<o:p></o:p>

WSAEADDRNOTAVAIL<o:p></o:p>

10049<o:p></o:p>

Cannot assign requested address.<o:p></o:p>

The requested address is not valid in its context. This normally results from an attempt to <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737550(v=vs.85).aspx">bind</a> to an address that is not valid for the local computer. This can also result from <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737625(v=vs.85).aspx">connect</a><a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx">sendto</a><a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741559(v=vs.85).aspx">WSAConnect</a>,<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741628(v=vs.85).aspx">WSAJoinLeaf</a>, or <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741693(v=vs.85).aspx">WSASendTo</a> when the remote address or port is not valid for a remote computer (for example, address or port 0).<o:p></o:p>

WSAENETDOWN<o:p></o:p>

10050<o:p></o:p>

Network is down.<o:p></o:p>

A socket operation encountered a dead network. This could indicate a serious failure of the network system (that is, the protocol stack that the Windows Sockets DLL runs over), the network interface, or the local network itself.<o:p></o:p>

WSAENETUNREACH<o:p></o:p>

10051<o:p></o:p>

Network is unreachable.<o:p></o:p>

A socket operation was attempted to an unreachable network. This usually means the local software knows no route to reach the remote host.<o:p></o:p>

WSAENETRESET<o:p></o:p>

10052<o:p></o:p>

Network dropped connection on reset.<o:p></o:p>

The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. It can also be returned by<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx">setsockopt</a> if an attempt is made to set <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ee470551(v=vs.85).aspx">SO_KEEPALIVE</a> on a connection that has already failed.<o:p></o:p>

WSAECONNABORTED<o:p></o:p>

10053<o:p></o:p>

Software caused connection abort.<o:p></o:p>

An established connection was aborted by the software in your host computer, possibly due to a data transmission time-out or protocol error.<o:p></o:p>

WSAECONNRESET<o:p></o:p>

10054<o:p></o:p>

Connection reset by peer.<o:p></o:p>

An existing connection was forcibly closed by the remote host. This normally results if the peer application on the remote host is suddenly stopped, the host is rebooted, the host or remote network interface is disabled, or the remote host uses a hard close (see <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx">setsockopt</a> for more information on the SO_LINGER option on the remote socket). This error may also result if a connection was broken due to keep-alive activity detecting a failure while one or more operations are in progress. Operations that were in progress fail with WSAENETRESET. Subsequent operations fail with WSAECONNRESET.<o:p></o:p>

WSAENOBUFS<o:p></o:p>

10055<o:p></o:p>

No buffer space available.<o:p></o:p>

An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.<o:p></o:p>

WSAEISCONN<o:p></o:p>

10056<o:p></o:p>

Socket is already connected.<o:p></o:p>

A connect request was made on an already-connected socket. Some implementations also return this error if <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx">sendto</a> is called on a connected SOCK_DGRAM socket (for SOCK_STREAM sockets, the to parameter insendto is ignored) although other implementations treat this as a legal occurrence.<o:p></o:p>

WSAENOTCONN<o:p></o:p>

10057<o:p></o:p>

Socket is not connected.<o:p></o:p>

A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx">sendto</a>) no address was supplied. Any other type of operation might also return this error—for example, <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx">setsockopt</a> setting <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ee470551(v=vs.85).aspx">SO_KEEPALIVE</a> if the connection has been reset.<o:p></o:p>

WSAESHUTDOWN<o:p></o:p>

10058<o:p></o:p>

Cannot send after socket shutdown.<o:p></o:p>

A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740481(v=vs.85).aspx">shutdown</a> call. By calling shutdown a partial close of a socket is requested, which is a signal that sending or receiving, or both have been discontinued.<o:p></o:p>

WSAETOOMANYREFS<o:p></o:p>

10059<o:p></o:p>

Too many references.<o:p></o:p>

Too many references to some kernel object.<o:p></o:p>

WSAETIMEDOUT<o:p></o:p>

10060<o:p></o:p>

Connection timed out.<o:p></o:p>

A connection attempt failed because the connected party did not properly respond after a period of time, or the established connection failed because the connected host has failed to respond.<o:p></o:p>

WSAECONNREFUSED<o:p></o:p>

10061<o:p></o:p>

Connection refused.<o:p></o:p>

No connection could be made because the target computer actively refused it. This usually results from trying to connect to a service that is inactive on the foreign host—that is, one with no server application running.<o:p></o:p>

WSAELOOP<o:p></o:p>

10062<o:p></o:p>

Cannot translate name.<o:p></o:p>

Cannot translate a name.<o:p></o:p>

WSAENAMETOOLONG<o:p></o:p>

10063<o:p></o:p>

Name too long.<o:p></o:p>

A name component or a name was too long.<o:p></o:p>

WSAEHOSTDOWN<o:p></o:p>

10064<o:p></o:p>

Host is down.<o:p></o:p>

A socket operation failed because the destination host is down. A socket operation encountered a dead host. Networking activity on the local host has not been initiated. These conditions are more likely to be indicated by the error WSAETIMEDOUT.<o:p></o:p>

WSAEHOSTUNREACH<o:p></o:p>

10065<o:p></o:p>

No route to host.<o:p></o:p>

A socket operation was attempted to an unreachable host. See WSAENETUNREACH.<o:p></o:p>

WSAENOTEMPTY<o:p></o:p>

10066<o:p></o:p>

Directory not empty.<o:p></o:p>

Cannot remove a directory that is not empty.<o:p></o:p>

WSAEPROCLIM<o:p></o:p>

10067<o:p></o:p>

Too many processes.<o:p></o:p>

A Windows Sockets implementation may have a limit on the number of applications that can use it simultaneously. <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742213(v=vs.85).aspx">WSAStartup</a> may fail with this error if the limit has been reached.<o:p></o:p>

WSAEUSERS<o:p></o:p>

10068<o:p></o:p>

User quota exceeded.<o:p></o:p>

Ran out of user quota.<o:p></o:p>

WSAEDQUOT<o:p></o:p>

10069<o:p></o:p>

Disk quota exceeded.<o:p></o:p>

Ran out of disk quota.<o:p></o:p>

WSAESTALE<o:p></o:p>

10070<o:p></o:p>

Stale file handle reference.<o:p></o:p>

The file handle reference is no longer available.<o:p></o:p>

WSAEREMOTE<o:p></o:p>

10071<o:p></o:p>

Item is remote.<o:p></o:p>

The item is not available locally.<o:p></o:p>

WSASYSNOTREADY<o:p></o:p>

10091<o:p></o:p>

Network subsystem is unavailable.<o:p></o:p>

This error is returned by <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742213(v=vs.85).aspx">WSAStartup</a> if the Windows Sockets implementation cannot function at this time because the underlying system it uses to provide network services is currently unavailable. Users should check:<o:p></o:p>

<![if !supportLists]>·         <![endif]>That the appropriate Windows Sockets DLL file is in the current path.<o:p></o:p>

<![if !supportLists]>·         <![endif]>That they are not trying to use more than one Windows Sockets implementation simultaneously. If there is more than one Winsock DLL on your system, be sure the first one in the path is appropriate for the network subsystem currently loaded.<o:p></o:p>

<![if !supportLists]>·         <![endif]>The Windows Sockets implementation documentation to be sure all necessary components are currently installed and configured correctly.<o:p></o:p>

WSAVERNOTSUPPORTED<o:p></o:p>

10092<o:p></o:p>

Winsock.dll version out of range.<o:p></o:p>

The current Windows Sockets implementation does not support the Windows Sockets specification version requested by the application. Check that no old Windows Sockets DLL files are being accessed.<o:p></o:p>

WSANOTINITIALISED<o:p></o:p>

10093<o:p></o:p>

Successful WSAStartup not yet performed.<o:p></o:p>

Either the application has not called <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742213(v=vs.85).aspx">WSAStartup</a> or WSAStartup failed. The application may be accessing a socket that the current active task does not own (that is, trying to share a socket between tasks), or<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741549(v=vs.85).aspx">WSACleanup</a> has been called too many times.<o:p></o:p>

WSAEDISCON<o:p></o:p>

10101<o:p></o:p>

Graceful shutdown in progress.<o:p></o:p>

Returned by <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741688(v=vs.85).aspx">WSARecv</a> and <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741686(v=vs.85).aspx">WSARecvFrom</a> to indicate that the remote party has initiated a graceful shutdown sequence.<o:p></o:p>

WSAENOMORE<o:p></o:p>

10102<o:p></o:p>

No more results.<o:p></o:p>

No more results can be returned by the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741641(v=vs.85).aspx">WSALookupServiceNext</a>function.<o:p></o:p>

WSAECANCELLED<o:p></o:p>

10103<o:p></o:p>

Call has been canceled.<o:p></o:p>

A call to the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741637(v=vs.85).aspx">WSALookupServiceEnd</a> function was made while this call was still processing. The call has been canceled.<o:p></o:p>

WSAEINVALIDPROCTABLE<o:p></o:p>

10104<o:p></o:p>

Procedure call table is invalid.<o:p></o:p>

The service provider procedure call table is invalid. A service provider returned a bogus procedure table to Ws2_32.dll. This is usually caused by one or more of the function pointers being NULL.<o:p></o:p>

WSAEINVALIDPROVIDER<o:p></o:p>

10105<o:p></o:p>

Service provider is invalid.<o:p></o:p>

The requested service provider is invalid. This error is returned by the<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742239(v=vs.85).aspx">WSCGetProviderInfo</a> and <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742240(v=vs.85).aspx">WSCGetProviderInfo32</a> functions if the protocol entry specified could not be found. This error is also returned if the service provider returned a version number other than 2.0.<o:p></o:p>

WSAEPROVIDERFAILEDINIT<o:p></o:p>

10106<o:p></o:p>

Service provider failed to initialize.<o:p></o:p>

The requested service provider could not be loaded or initialized. This error is returned if either a service provider's DLL could not be loaded (<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms684175(v=vs.85).aspx">LoadLibrary</a> failed) or the provider's <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742296(v=vs.85).aspx">WSPStartup</a> or <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740047(v=vs.85).aspx">NSPStartup</a>function failed.<o:p></o:p>

WSASYSCALLFAILURE<o:p></o:p>

10107<o:p></o:p>

System call failure.<o:p></o:p>

A system call that should never fail has failed. This is a generic error code, returned under various conditions.<o:p></o:p>

Returned when a system call that should never fail does fail. For example, if a call to <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742219(v=vs.85).aspx">WaitForMultipleEvents</a> fails or one of the registry functions fails trying to manipulate the protocol/namespace catalogs.<o:p></o:p>

Returned when a provider does not return SUCCESS and does not provide an extended error code. Can indicate a service provider implementation error.<o:p></o:p>

WSASERVICE_NOT_FOUND<o:p></o:p>

10108<o:p></o:p>

Service not found.<o:p></o:p>

No such service is known. The service cannot be found in the specified name space.<o:p></o:p>

WSATYPE_NOT_FOUND<o:p></o:p>

10109<o:p></o:p>

Class type not found.<o:p></o:p>

The specified class was not found.<o:p></o:p>

WSA_E_NO_MORE<o:p></o:p>

10110<o:p></o:p>

No more results.<o:p></o:p>

No more results can be returned by the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741641(v=vs.85).aspx">WSALookupServiceNext</a>function.<o:p></o:p>

WSA_E_CANCELLED<o:p></o:p>

10111<o:p></o:p>

Call was canceled.<o:p></o:p>

A call to the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741637(v=vs.85).aspx">WSALookupServiceEnd</a> function was made while this call was still processing. The call has been canceled.<o:p></o:p>

WSAEREFUSED<o:p></o:p>

10112<o:p></o:p>

Database query was refused.<o:p></o:p>

A database query failed because it was actively refused.<o:p></o:p>

WSAHOST_NOT_FOUND<o:p></o:p>

11001<o:p></o:p>

Host not found.<o:p></o:p>

No such host is known. The name is not an official host name or alias, or it cannot be found in the database(s) being queried. This error may also be returned for protocol and service queries, and means that the specified name could not be found in the relevant database.<o:p></o:p>

WSATRY_AGAIN<o:p></o:p>

11002<o:p></o:p>

Nonauthoritative host not found.<o:p></o:p>

This is usually a temporary error during host name resolution and means that the local server did not receive a response from an authoritative server. A retry at some time later may be successful.<o:p></o:p>

WSANO_RECOVERY<o:p></o:p>

11003<o:p></o:p>

This is a nonrecoverable error.<o:p></o:p>

This indicates that some sort of nonrecoverable error occurred during a database lookup. This may be because the database files (for example, BSD-compatible HOSTS, SERVICES, or PROTOCOLS files) could not be found, or a DNS request was returned by the server with a severe error.<o:p></o:p>

WSANO_DATA<o:p></o:p>

11004<o:p></o:p>

Valid name, no data record of requested type.<o:p></o:p>

The requested name is valid and was found in the database, but it does not have the correct associated data being resolved for. The usual example for this is a host name-to-address translation attempt (using<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms738524(v=vs.85).aspx">gethostbyname</a> or <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741522(v=vs.85).aspx">WSAAsyncGetHostByName</a>) which uses the DNS (Domain Name Server). An MX record is returned but no A record—indicating the host itself exists, but is not directly reachable.<o:p></o:p>

WSA_QOS_RECEIVERS<o:p></o:p>

11005<o:p></o:p>

QoS receivers.<o:p></o:p>

At least one QoS reserve has arrived.<o:p></o:p>

WSA_QOS_SENDERS<o:p></o:p>

11006<o:p></o:p>

QoS senders.<o:p></o:p>

At least one QoS send path has arrived.<o:p></o:p>

WSA_QOS_NO_SENDERS<o:p></o:p>

11007<o:p></o:p>

No QoS senders.<o:p></o:p>

There are no QoS senders.<o:p></o:p>

WSA_QOS_NO_RECEIVERS<o:p></o:p>

11008<o:p></o:p>

QoS no receivers.<o:p></o:p>

There are no QoS receivers.<o:p></o:p>

WSA_QOS_REQUEST_CONFIRMED<o:p></o:p>

11009<o:p></o:p>

QoS request confirmed.<o:p></o:p>

The QoS reserve request has been confirmed.<o:p></o:p>

WSA_QOS_ADMISSION_FAILURE<o:p></o:p>

11010<o:p></o:p>

QoS admission error.<o:p></o:p>

A QoS error occurred due to lack of resources.<o:p></o:p>

WSA_QOS_POLICY_FAILURE<o:p></o:p>

11011<o:p></o:p>

QoS policy failure.<o:p></o:p>

The QoS request was rejected because the policy system couldn't allocate the requested resource within the existing policy.<o:p></o:p>

WSA_QOS_BAD_STYLE<o:p></o:p>

11012<o:p></o:p>

QoS bad style.<o:p></o:p>

An unknown or conflicting QoS style was encountered.<o:p></o:p>

WSA_QOS_BAD_OBJECT<o:p></o:p>

11013<o:p></o:p>

QoS bad object.<o:p></o:p>

A problem was encountered with some part of the filterspec or the provider-specific buffer in general.<o:p></o:p>

WSA_QOS_TRAFFIC_CTRL_ERROR<o:p></o:p>

11014<o:p></o:p>

QoS traffic control error.<o:p></o:p>

An error with the underlying traffic control (TC) API as the generic QoS request was converted for local enforcement by the TC API. This could be due to an out of memory error or to an internal QoS provider error.<o:p></o:p>

WSA_QOS_GENERIC_ERROR<o:p></o:p>

11015<o:p></o:p>

QoS generic error.<o:p></o:p>

A general QoS error.<o:p></o:p>

WSA_QOS_ESERVICETYPE<o:p></o:p>

11016<o:p></o:p>

QoS service type error.<o:p></o:p>

An invalid or unrecognized service type was found in the QoS flowspec.<o:p></o:p>

WSA_QOS_EFLOWSPEC<o:p></o:p>

11017<o:p></o:p>

QoS flowspec error.<o:p></o:p>

An invalid or inconsistent flowspec was found in the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/aa374024(v=vs.85).aspx">QOS</a> structure.<o:p></o:p>

WSA_QOS_EPROVSPECBUF<o:p></o:p>

11018<o:p></o:p>

Invalid QoS provider buffer.<o:p></o:p>

An invalid QoS provider-specific buffer.<o:p></o:p>

WSA_QOS_EFILTERSTYLE<o:p></o:p>

11019<o:p></o:p>

Invalid QoS filter style.<o:p></o:p>

An invalid QoS filter style was used.<o:p></o:p>

WSA_QOS_EFILTERTYPE<o:p></o:p>

11020<o:p></o:p>

Invalid QoS filter type.<o:p></o:p>

An invalid QoS filter type was used.<o:p></o:p>

WSA_QOS_EFILTERCOUNT<o:p></o:p>

11021<o:p></o:p>

Incorrect QoS filter count.<o:p></o:p>

An incorrect number of QoS FILTERSPECs were specified in the FLOWDESCRIPTOR.<o:p></o:p>

WSA_QOS_EOBJLENGTH<o:p></o:p>

11022<o:p></o:p>

Invalid QoS object length.<o:p></o:p>

An object with an invalid ObjectLength field was specified in the QoS provider-specific buffer.<o:p></o:p>

WSA_QOS_EFLOWCOUNT<o:p></o:p>

11023<o:p></o:p>

Incorrect QoS flow count.<o:p></o:p>

An incorrect number of flow descriptors was specified in the QoS structure.<o:p></o:p>

WSA_QOS_EUNKOWNPSOBJ<o:p></o:p>

11024<o:p></o:p>

Unrecognized QoS object.<o:p></o:p>

An unrecognized object was found in the QoS provider-specific buffer.<o:p></o:p>

WSA_QOS_EPOLICYOBJ<o:p></o:p>

11025<o:p></o:p>

Invalid QoS policy object.<o:p></o:p>

An invalid policy object was found in the QoS provider-specific buffer.<o:p></o:p>

WSA_QOS_EFLOWDESC<o:p></o:p>

11026<o:p></o:p>

Invalid QoS flow descriptor.<o:p></o:p>

An invalid QoS flow descriptor was found in the flow descriptor list.<o:p></o:p>

WSA_QOS_EPSFLOWSPEC<o:p></o:p>

11027<o:p></o:p>

Invalid QoS provider-specific flowspec.<o:p></o:p>

An invalid or inconsistent flowspec was found in the QoS provider-specific buffer.<o:p></o:p>

WSA_QOS_EPSFILTERSPEC<o:p></o:p>

11028<o:p></o:p>

Invalid QoS provider-specific filterspec.<o:p></o:p>

An invalid FILTERSPEC was found in the QoS provider-specific buffer.<o:p></o:p>

WSA_QOS_ESDMODEOBJ<o:p></o:p>

11029<o:p></o:p>

Invalid QoS shape discard mode object.<o:p></o:p>

An invalid shape discard mode object was found in the QoS provider-specific buffer.<o:p></o:p>

WSA_QOS_ESHAPERATEOBJ<o:p></o:p>

11030<o:p></o:p>

Invalid QoS shaping rate object.<o:p></o:p>

An invalid shaping rate object was found in the QoS provider-specific buffer.<o:p></o:p>

WSA_QOS_RESERVED_PETYPE<o:p></o:p>

11031<o:p></o:p>

Reserved policy QoS element type.<o:p></o:p>

A reserved policy element was found in the QoS provider-specific buffer.<o:p></o:p>

<o:p> </o:p>

</div>

</body>

</html>