Difference between revisions of "Windows Socket Error Codes"

From ATTWiki
Jump to: navigation, search
(Created page with "Windows Sockets Error Codes Most Windows Sockets 2 functions do not return the specific cause of an error when the function returns. For information, see the Handling Winsock ...")
 
 
(16 intermediate revisions by one user not shown)
Line 1: Line 1:
Windows Sockets Error Codes
+
Back to [[Miscellaneous]]
Most Windows Sockets 2 functions do not return the specific cause of an error when the function returns. For information, see the Handling Winsock Errors topic.
+
 
The WSAGetLastError 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 FormatMessage function can be used to obtain the message string for the returned error.
+
<br><br>
For information on how to handle error codes when porting socket applications to Winsock, see Error Codes - errno, h_errno and WSAGetLastError.
+
From Microsoft:<br><br>
The following list describes the possible error codes returned by the WSAGetLastError 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.
+
 
Return code/value Description
+
<p class=MsoNormal style='margin-bottom:0in;margin-bottom:.0001pt'><span style='font-size:36.0pt;
WSA_INVALID_HANDLE
+
font-family:"Segoe UI Light","sans-serif";color:#454545'>Windows Sockets Error
6
+
Codes</span></p>
Specified event object handle is invalid.
+
 
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.
+
<p class=MsoNormal style='margin-bottom:0in;margin-bottom:.0001pt;line-height:
WSA_NOT_ENOUGH_MEMORY
+
15.0pt'><span style='font-size:10.5pt;font-family:"Segoe UI","sans-serif";
8
+
color:#454545'>Most Windows Sockets 2 functions do not return the specific
Insufficient memory available.
+
cause of an error when the function returns. For information, see the&nbsp;</span>[http://msdn.microsoft.com/en-us/library/windows/desktop/cc507522(v=vs.85).aspx Handling Winsock Errors] <span
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.
+
style='font-size:10.5pt;font-family:"Segoe UI","sans-serif";color:#454545'>&nbsp;topic.</span></p>
WSA_INVALID_PARAMETER
+
 
87
+
<p class=MsoNormal style='margin-bottom:0in;margin-bottom:.0001pt;line-height:
One or more parameters are invalid.
+
15.0pt'><span style='font-size:10.5pt;font-family:"Segoe UI","sans-serif";
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.
+
color:#454545'>The&nbsp;</span> [http://msdn.microsoft.com/en-us/library/windows/desktop/ms741580(v=vs.85).aspx WSAGetLastError] <span
WSA_OPERATION_ABORTED
+
style='font-size:10.5pt;font-family:"Segoe UI","sans-serif";color:#454545'>&nbsp;function
995
+
returns the last error that occurred for the calling thread. When a particular
Overlapped operation aborted.
+
Windows Sockets function indicates an error has occurred, this function should
An overlapped operation was canceled due to the closure of the socket, or the execution of the SIO_FLUSH command in WSAIoctl. Note that this error is returned by the operating system, so the error number may change in future releases of Windows.
+
be called immediately to retrieve the extended error code for the failing
WSA_IO_INCOMPLETE
+
function call. These error codes and a short text description associated with
996
+
an error code are defined in the&nbsp;<i>Winerror.h</i>&nbsp;header file. The&nbsp;</span>[http://msdn.microsoft.com/en-us/library/windows/desktop/ms679351(v=vs.85).aspx FormatMessage] <span
Overlapped I/O event object not in signaled state.
+
style='font-size:10.5pt;font-family:"Segoe UI","sans-serif";color:#454545'>&nbsp;function
The application has tried to determine the status of an overlapped operation which is not yet completed. Applications that use WSAGetOverlappedResult (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.
+
can be used to obtain the message string for the returned error.</span></p>
WSA_IO_PENDING
+
 
997
+
<p class=MsoNormal style='margin-bottom:0in;margin-bottom:.0001pt;line-height:
Overlapped operations will complete later.
+
15.0pt'><span style='font-size:10.5pt;font-family:"Segoe UI","sans-serif";
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.
+
color:#454545'>For information on how to handle error codes when porting socket
WSAEINTR
+
applications to Winsock, see&nbsp;</span>[http://msdn.microsoft.com/en-us/library/windows/desktop/ms737828(v=vs.85).aspx "Error Codes - errno, h_errno and
10004
+
WSAGetLastError"]<span style='font-size:10.5pt;font-family:"Segoe UI","sans-serif";
Interrupted function call.
+
color:#454545'>.</span></p>
A blocking operation was interrupted by a call to WSACancelBlockingCall.
+
 
WSAEBADF
+
<p class=MsoNormal style='margin-bottom:0in;margin-bottom:.0001pt;line-height:
10009
+
15.0pt'><span style='font-size:10.5pt;font-family:"Segoe UI","sans-serif";
File handle is not valid.
+
color:#454545'>The following list describes the possible error codes returned
The file handle supplied is not valid.
+
by the&nbsp;</span>[http://msdn.microsoft.com/en-us/library/windows/desktop/ms741580(v=vs.85).aspx WSAGetLastError]<span
WSAEACCES
+
style='font-size:10.5pt;font-family:"Segoe UI","sans-serif";color:#454545'>&nbsp;function.
10013
+
Errors are listed in numerical order with the error macro name. Some error
Permission denied.
+
codes defined in the&nbsp;<i>Winsock2.h</i>&nbsp;header file are not returned
An attempt was made to access a socket in a way forbidden by its access permissions. An example is using a broadcast address for sendto without broadcast permission being set using setsockopt(SO_BROADCAST).
+
from any function.</span></p>
Another possible reason for the WSAEACCES error is that when the bind 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 SO_EXCLUSIVEADDRUSE option.
+
 
WSAEFAULT
+
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=740
10014
+
style='width:555.0pt;border-collapse:collapse'>
Bad address.
+
<tr>
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 sockaddr structure, is smaller than the sizeof(sockaddr).
+
  <td style='border:none;border-bottom:solid #DBDBDB 1.0pt;padding:7.5pt 6.0pt 7.5pt 6.0pt'>
WSAEINVAL
+
  <p class=MsoNormal style='margin:7.5pt;line-height:normal'><b><span
10022
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#636363'>Return
Invalid argument.
+
  code/value</span></b></p>
Some invalid argument was supplied (for example, specifying an invalid level to the setsockopt function). In some instances, it also refers to the current state of the socket—for instance, calling accept on a socket that is not listening.
+
  </td>
WSAEMFILE
+
  <td style='border:none;border-bottom:solid #DBDBDB 1.0pt;padding:7.5pt 6.0pt 7.5pt 6.0pt'>
10024
+
  <p class=MsoNormal style='margin:7.5pt;line-height:normal'><b><span
Too many open files.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#636363'>Description</span></b></p>
Too many open sockets. Each implementation may have a maximum number of socket handles available, either globally, per process, or per thread.
+
  </td>
WSAEWOULDBLOCK
+
</tr>
10035
+
<tr>
Resource temporarily unavailable.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
This error is returned from operations on nonblocking sockets that cannot be completed immediately, for example recv 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 connect on a nonblocking SOCK_STREAM socket, since some time must elapse for the connection to be established.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
WSAEINPROGRESS
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
10036
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
Operation now in progress.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_INVALID_HANDLE</span></b></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.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
WSAEALREADY
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
10037
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>6</span></p>
Operation already in progress.
+
  </td>
An operation was attempted on a nonblocking socket with an operation already in progress—that is, calling connect a second time on a nonblocking socket that is already connecting, or canceling an asynchronous request (WSAAsyncGetXbyY) that has already been canceled or completed.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
WSAENOTSOCK
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
10038
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
Socket operation on nonsocket.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
An operation was attempted on something that is not a socket. Either the socket handle parameter did not reference a valid socket, or for select, a member of an fd_set was not valid.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Specified
WSAEDESTADDRREQ
+
  event object handle is invalid.</span></p>
10039
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
Destination address required.
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
A required address was omitted from an operation on a socket. For example, this error is returned if sendto is called with the remote address of ADDR_ANY.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
WSAEMSGSIZE
+
  application attempts to use an event object, but the specified handle is not
10040
+
  valid. Note that this error is returned by the operating system, so the error
Message too long.
+
  number may change in future releases of Windows.</span></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.
+
  </td>
WSAEPROTOTYPE
+
</tr>
10041
+
<tr>
Protocol wrong type for socket.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
A protocol was specified in the socket 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.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
WSAENOPROTOOPT
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
10042
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
Bad protocol option.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_NOT_ENOUGH_MEMORY</span></b></p>
An unknown, invalid or unsupported option or level was specified in a getsockopt or setsockopt call.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
WSAEPROTONOSUPPORT
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
10043
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>8</span></p>
Protocol not supported.
+
  </td>
The requested protocol has not been configured into the system, or no implementation for it exists. For example, a socket call requests a SOCK_DGRAM socket, but specifies a stream protocol.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
WSAESOCKTNOSUPPORT
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
10044
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
Socket type not supported.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
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 socket call, and the implementation does not support SOCK_RAW sockets at all.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Insufficient
WSAEOPNOTSUPP
+
  memory available.</span></p>
10045
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
Operation not supported.
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
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.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
WSAEPFNOSUPPORT
+
  application used a Windows Sockets function that directly maps to a Windows
10046
+
  function. The Windows function is indicating a lack of required memory
Protocol family not supported.
+
  resources. Note that this error is returned by the operating system, so the
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.
+
  error number may change in future releases of Windows.</span></p>
WSAEAFNOSUPPORT
+
  </td>
10047
+
</tr>
Address family not supported by protocol family.
+
<tr>
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 socket call, or if an address of the wrong family is used for a socket, for example, in sendto.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
WSAEADDRINUSE
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
10048
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
Address already in use.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
Typically, only one usage of each socket address (protocol/IP address/port) is permitted. This error occurs if an application attempts to bind 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 bind multiple sockets to the same port number, consider using setsockopt (SO_REUSEADDR). Client applications usually need not call bind at all—connect 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, listen, WSAConnect, or WSAJoinLeaf.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_INVALID_PARAMETER</span></b></p>
WSAEADDRNOTAVAIL
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
10049
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
Cannot assign requested address.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>87</span></p>
The requested address is not valid in its context. This normally results from an attempt to bind to an address that is not valid for the local computer. This can also result from connect, sendto, WSAConnect, WSAJoinLeaf, or WSASendTo when the remote address or port is not valid for a remote computer (for example, address or port 0).
+
  </td>
WSAENETDOWN
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
10050
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
Network is down.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
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.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
WSAENETUNREACH
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>One
10051
+
  or more parameters are invalid.</span></p>
Network is unreachable.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
A socket operation was attempted to an unreachable network. This usually means the local software knows no route to reach the remote host.
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
WSAENETRESET
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
10052
+
  application used a Windows Sockets function which directly maps to a Windows
Network dropped connection on reset.
+
  function. The Windows function is indicating a problem with one or more
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 setsockopt if an attempt is made to set SO_KEEPALIVE on a connection that has already failed.
+
  parameters. Note that this error is returned by the operating system, so the
WSAECONNABORTED
+
  error number may change in future releases of Windows.</span></p>
10053
+
  </td>
Software caused connection abort.
+
</tr>
An established connection was aborted by the software in your host computer, possibly due to a data transmission time-out or protocol error.
+
<tr>
WSAECONNRESET
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
10054
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
Connection reset by peer.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
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 setsockopt 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.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
WSAENOBUFS
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_OPERATION_ABORTED</span></b></p>
10055
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
No buffer space available.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>995</span></p>
WSAEISCONN
+
  </td>
10056
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
Socket is already connected.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
A connect request was made on an already-connected socket. Some implementations also return this error if sendto is called on a connected SOCK_DGRAM socket (for SOCK_STREAM sockets, the to parameter in sendto is ignored) although other implementations treat this as a legal occurrence.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
WSAENOTCONN
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
10057
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Overlapped
Socket is not connected.
+
  operation aborted.</span></p>
A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using sendto) no address was supplied. Any other type of operation might also return this error—for example, setsockopt setting SO_KEEPALIVE if the connection has been reset.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
WSAESHUTDOWN
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
10058
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
Cannot send after socket shutdown.
+
  overlapped operation was canceled due to the closure of the socket, or the
A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown 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.
+
  execution of the SIO_FLUSH command in&nbsp;</span><a
WSAETOOMANYREFS
+
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741621(v=vs.85).aspx"><b><span
10059
+
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
Too many references.
+
  color:#00188F;text-decoration:none'>WSAIoctl</span></b></a><span
Too many references to some kernel object.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>.
WSAETIMEDOUT
+
  Note that this error is returned by the operating system, so the error number
10060
+
  may change in future releases of Windows.</span></p>
Connection timed out.
+
  </td>
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.
+
</tr>
WSAECONNREFUSED
+
<tr>
10061
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
Connection refused.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
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.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
WSAELOOP
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
10062
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_IO_INCOMPLETE</span></b></p>
Cannot translate name.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
Cannot translate a name.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
WSAENAMETOOLONG
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>996</span></p>
10063
+
  </td>
Name too long.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
A name component or a name was too long.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
WSAEHOSTDOWN
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
10064
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
Host is down.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Overlapped
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.
+
  I/O event object not in signaled state.</span></p>
WSAEHOSTUNREACH
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
10065
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
No route to host.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
A socket operation was attempted to an unreachable host. See WSAENETUNREACH.
+
  application has tried to determine the status of an overlapped operation
WSAENOTEMPTY
+
  which is not yet completed. Applications that use</span><a
10066
+
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741582(v=vs.85).aspx"><b><span
Directory not empty.
+
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
Cannot remove a directory that is not empty.
+
  color:#00188F;text-decoration:none'>WSAGetOverlappedResult</span></b></a><span
WSAEPROCLIM
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;(with
10067
+
  the&nbsp;<i>fWait</i>&nbsp;flag set to&nbsp;<b>FALSE</b>) in a polling mode
Too many processes.
+
  to determine when an overlapped operation has completed, get this error code
A Windows Sockets implementation may have a limit on the number of applications that can use it simultaneously. WSAStartup may fail with this error if the limit has been reached.
+
  until the operation is complete. Note that this error is returned by the
WSAEUSERS
+
  operating system, so the error number may change in future releases of
10068
+
  Windows.</span></p>
User quota exceeded.
+
  </td>
Ran out of user quota.
+
</tr>
WSAEDQUOT
+
<tr>
10069
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
Disk quota exceeded.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
Ran out of disk quota.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
WSAESTALE
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
10070
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_IO_PENDING</span></b></p>
Stale file handle reference.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
The file handle reference is no longer available.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
WSAEREMOTE
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>997</span></p>
10071
+
  </td>
Item is remote.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
The item is not available locally.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
WSASYSNOTREADY
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
10091
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
Network subsystem is unavailable.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Overlapped
This error is returned by WSAStartup 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:
+
  operations will complete later.</span></p>
That the appropriate Windows Sockets DLL file is in the current path.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
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.
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
The Windows Sockets implementation documentation to be sure all necessary components are currently installed and configured correctly.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
WSAVERNOTSUPPORTED
+
  application has initiated an overlapped operation that cannot be completed
10092
+
  immediately. A completion indication will be given later when the operation
Winsock.dll version out of range.
+
  has been completed. Note that this error is returned by the operating system,
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.
+
  so the error number may change in future releases of Windows.</span></p>
WSANOTINITIALISED
+
  </td>
10093
+
</tr>
Successful WSAStartup not yet performed.
+
<tr>
Either the application has not called WSAStartup 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 WSACleanup has been called too many times.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
WSAEDISCON
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
10101
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
Graceful shutdown in progress.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
Returned by WSARecv and WSARecvFrom to indicate that the remote party has initiated a graceful shutdown sequence.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEINTR</span></b></p>
WSAENOMORE
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
10102
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
No more results.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10004</span></p>
No more results can be returned by the WSALookupServiceNext function.
+
  </td>
WSAECANCELLED
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
10103
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
Call has been canceled.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
A call to the WSALookupServiceEnd function was made while this call was still processing. The call has been canceled.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
WSAEINVALIDPROCTABLE
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Interrupted
10104
+
  function call.</span></p>
Procedure call table is invalid.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
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.
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
WSAEINVALIDPROVIDER
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
10105
+
  blocking operation was interrupted by a call to</span><a
Service provider is invalid.
+
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741547(v=vs.85).aspx"><span
The requested service provider is invalid. This error is returned by the WSCGetProviderInfo and WSCGetProviderInfo32 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.
+
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
WSAEPROVIDERFAILEDINIT
+
  color:#00188F;text-decoration:none'>WSACancelBlockingCall</span></a><span
10106
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>.</span></p>
Service provider failed to initialize.
+
  </td>
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 (LoadLibrary failed) or the provider's WSPStartup or NSPStartup function failed.
+
</tr>
WSASYSCALLFAILURE
+
<tr>
10107
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
System call failure.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
A system call that should never fail has failed. This is a generic error code, returned under various conditions.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
Returned when a system call that should never fail does fail. For example, if a call to WaitForMultipleEvents fails or one of the registry functions fails trying to manipulate the protocol/namespace catalogs.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
Returned when a provider does not return SUCCESS and does not provide an extended error code. Can indicate a service provider implementation error.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEBADF</span></b></p>
WSASERVICE_NOT_FOUND
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
10108
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
Service not found.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10009</span></p>
No such service is known. The service cannot be found in the specified name space.
+
  </td>
WSATYPE_NOT_FOUND
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
10109
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
Class type not found.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
The specified class was not found.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
WSA_E_NO_MORE
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>File
10110
+
  handle is not valid.</span></p>
No more results.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
No more results can be returned by the WSALookupServiceNext function.
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
WSA_E_CANCELLED
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
10111
+
  file handle supplied is not valid.</span></p>
Call was canceled.
+
  </td>
A call to the WSALookupServiceEnd function was made while this call was still processing. The call has been canceled.
+
</tr>
WSAEREFUSED
+
<tr>
10112
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
Database query was refused.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
A database query failed because it was actively refused.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
WSAHOST_NOT_FOUND
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
11001
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEACCES</span></b></p>
Host not found.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
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.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
WSATRY_AGAIN
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10013</span></p>
11002
+
  </td>
Nonauthoritative host not found.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
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.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
WSANO_RECOVERY
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
11003
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
This is a nonrecoverable error.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Permission
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.
+
  denied.</span></p>
WSANO_DATA
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
11004
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
Valid name, no data record of requested type.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
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 gethostbyname or WSAAsyncGetHostByName) 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.
+
  attempt was made to access a socket in a way forbidden by its access
WSA_QOS_RECEIVERS
+
  permissions. An example is using a broadcast address for&nbsp;</span><a
11005
+
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx"><b><span
QoS receivers.
+
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
At least one QoS reserve has arrived.
+
  color:#00188F;text-decoration:none'>sendto</span></b></a><span
WSA_QOS_SENDERS
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;without
11006
+
  broadcast permission being set using&nbsp;</span><a
QoS senders.
+
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx"><b><span
At least one QoS send path has arrived.
+
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
WSA_QOS_NO_SENDERS
+
  color:#00188F;text-decoration:none'>setsockopt</span></b></a><span
11007
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>(SO_BROADCAST).</span></p>
No QoS senders.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
There are no QoS senders.
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
WSA_QOS_NO_RECEIVERS
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Another
11008
+
  possible reason for the WSAEACCES error is that when the&nbsp;</span><a
QoS no receivers.
+
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737550(v=vs.85).aspx"><b><span
There are no QoS receivers.
+
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
WSA_QOS_REQUEST_CONFIRMED
+
  color:#00188F;text-decoration:none'>bind</span></b></a><span
11009
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>function
QoS request confirmed.
+
  is called (on Windows&nbsp;NT&nbsp;4.0 with SP4 and later), another
The QoS reserve request has been confirmed.
+
  application, service, or kernel mode driver is bound to the same address with
WSA_QOS_ADMISSION_FAILURE
+
  exclusive access. Such exclusive access is a new feature of
11010
+
  Windows&nbsp;NT&nbsp;4.0 with SP4 and later, and is implemented by using the</span><a
QoS admission error.
+
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/cc150667(v=vs.85).aspx"><span
A QoS error occurred due to lack of resources.
+
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
WSA_QOS_POLICY_FAILURE
+
  color:#00188F;text-decoration:none'>SO_EXCLUSIVEADDRUSE</span></a><span
11011
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;option.</span></p>
QoS policy failure.
+
  </td>
The QoS request was rejected because the policy system couldn't allocate the requested resource within the existing policy.
+
</tr>
WSA_QOS_BAD_STYLE
+
<tr>
11012
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
QoS bad style.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
An unknown or conflicting QoS style was encountered.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
WSA_QOS_BAD_OBJECT
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
11013
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEFAULT</span></b></p>
QoS bad object.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
A problem was encountered with some part of the filterspec or the provider-specific buffer in general.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
WSA_QOS_TRAFFIC_CTRL_ERROR
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10014</span></p>
11014
+
  </td>
QoS traffic control error.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
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.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
WSA_QOS_GENERIC_ERROR
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
11015
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
QoS generic error.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Bad
A general QoS error.
+
  address.</span></p>
WSA_QOS_ESERVICETYPE
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
11016
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
QoS service type error.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
An invalid or unrecognized service type was found in the QoS flowspec.
+
  system detected an invalid pointer address in attempting to use a pointer
WSA_QOS_EFLOWSPEC
+
  argument of a call. This error occurs if an application passes an invalid
11017
+
  pointer value, or if the length of the buffer is too small. For instance, if
QoS flowspec error.
+
  the length of an argument, which is a&nbsp;</span><a
An invalid or inconsistent flowspec was found in the QOS structure.
+
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740496(v=vs.85).aspx"><b><span
WSA_QOS_EPROVSPECBUF
+
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
11018
+
  color:#00188F;text-decoration:none'>sockaddr</span></b></a><span
Invalid QoS provider buffer.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;structure,
An invalid QoS provider-specific buffer.
+
  is smaller than the sizeof(sockaddr).</span></p>
WSA_QOS_EFILTERSTYLE
+
  </td>
11019
+
</tr>
Invalid QoS filter style.
+
<tr>
An invalid QoS filter style was used.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
WSA_QOS_EFILTERTYPE
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
11020
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
Invalid QoS filter type.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
An invalid QoS filter type was used.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEINVAL</span></b></p>
WSA_QOS_EFILTERCOUNT
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
11021
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
Incorrect QoS filter count.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10022</span></p>
An incorrect number of QoS FILTERSPECs were specified in the FLOWDESCRIPTOR.
+
  </td>
WSA_QOS_EOBJLENGTH
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
11022
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
Invalid QoS object length.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
An object with an invalid ObjectLength field was specified in the QoS provider-specific buffer.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
WSA_QOS_EFLOWCOUNT
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
11023
+
  argument.</span></p>
Incorrect QoS flow count.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
An incorrect number of flow descriptors was specified in the QoS structure.
+
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
WSA_QOS_EUNKOWNPSOBJ
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Some
11024
+
  invalid argument was supplied (for example, specifying an invalid level to
Unrecognized QoS object.
+
  the&nbsp;</span><a
An unrecognized object was found in the QoS provider-specific buffer.
+
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx"><b><span
WSA_QOS_EPOLICYOBJ
+
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
11025
+
  color:#00188F;text-decoration:none'>setsockopt</span></b></a><span
Invalid QoS policy object.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;function).
An invalid policy object was found in the QoS provider-specific buffer.
+
  In some instances, it also refers to the current state of the socket—for
WSA_QOS_EFLOWDESC
+
  instance, calling&nbsp;</span><a
11026
+
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737526(v=vs.85).aspx"><b><span
Invalid QoS flow descriptor.
+
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
An invalid QoS flow descriptor was found in the flow descriptor list.
+
  color:#00188F;text-decoration:none'>accept</span></b></a><span
WSA_QOS_EPSFLOWSPEC
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;on
11027
+
  a socket that is not listening.</span></p>
Invalid QoS provider-specific flowspec.
+
  </td>
An invalid or inconsistent flowspec was found in the QoS provider-specific buffer.
+
</tr>
WSA_QOS_EPSFILTERSPEC
+
<tr>
11028
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
Invalid QoS provider-specific filterspec.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
An invalid FILTERSPEC was found in the QoS provider-specific buffer.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
WSA_QOS_ESDMODEOBJ
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
11029
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEMFILE</span></b></p>
Invalid QoS shape discard mode object.
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
An invalid shape discard mode object was found in the QoS provider-specific buffer.
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
WSA_QOS_ESHAPERATEOBJ
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10024</span></p>
11030
+
  </td>
Invalid QoS shaping rate object.
+
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
An invalid shaping rate object was found in the QoS provider-specific buffer.
+
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
WSA_QOS_RESERVED_PETYPE
+
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
11031
+
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
Reserved policy QoS element type.
+
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Too
A reserved policy element was found in the QoS provider-specific buffer.
+
  many open files.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Too
 +
  many open sockets. Each implementation may have a maximum number of socket
 +
  handles available, either globally, per process, or per thread.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEWOULDBLOCK</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10035</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Resource
 +
  temporarily unavailable.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>This
 +
  error is returned from operations on nonblocking sockets that cannot be
 +
  completed immediately, for example&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740121(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>recv</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;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&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737625(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>connect</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;on
 +
  a nonblocking SOCK_STREAM socket, since some time must elapse for the
 +
  connection to be established.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEINPROGRESS</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10036</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Operation
 +
  now in progress.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEALREADY</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10037</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Operation
 +
  already in progress.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  operation was attempted on a nonblocking socket with an operation already in
 +
  progress—that is, calling&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737625(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>connect</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;a
 +
  second time on a nonblocking socket that is already connecting, or canceling
 +
  an asynchronous request (<b>WSAAsyncGetXbyY</b>) that has already been
 +
  canceled or completed.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAENOTSOCK</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10038</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Socket
 +
  operation on nonsocket.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  operation was attempted on something that is not a socket. Either the socket
 +
  handle parameter did not reference a valid socket, or for</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740141(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>select</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>,
 +
  a member of an&nbsp;<b>fd_set</b>&nbsp;was not valid.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEDESTADDRREQ</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10039</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Destination
 +
  address required.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  required address was omitted from an operation on a socket. For example, this
 +
  error is returned if&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>sendto</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;is
 +
  called with the remote address of ADDR_ANY.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEMSGSIZE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10040</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Message
 +
  too long.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEPROTOTYPE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10041</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Protocol
 +
  wrong type for socket.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  protocol was specified in the&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740506(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>socket</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAENOPROTOOPT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10042</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Bad
 +
  protocol option.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  unknown, invalid or unsupported option or level was specified in a</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms738544(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>getsockopt</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;or&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>setsockopt</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;call.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEPROTONOSUPPORT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10043</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Protocol
 +
  not supported.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
 +
  requested protocol has not been configured into the system, or no
 +
  implementation for it exists. For example, a&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740506(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>socket</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;call
 +
  requests a SOCK_DGRAM socket, but specifies a stream protocol.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAESOCKTNOSUPPORT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10044</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Socket
 +
  type not supported.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740506(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>socket</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;call,
 +
  and the implementation does not support SOCK_RAW sockets at all.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEOPNOTSUPP</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10045</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Operation
 +
  not supported.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEPFNOSUPPORT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10046</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Protocol
 +
  family not supported.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEAFNOSUPPORT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10047</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Address
 +
  family not supported by protocol family.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740506(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>socket</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;call,
 +
  or if an address of the wrong family is used for a socket, for example, in&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>sendto</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEADDRINUSE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10048</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Address
 +
  already in use.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Typically,
 +
  only one usage of each socket address (protocol/IP address/port) is
 +
  permitted. This error occurs if an application attempts to</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737550(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>bind</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;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&nbsp;<b>bind</b>multiple
 +
  sockets to the same port number, consider using&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>setsockopt</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>(SO_REUSEADDR).
 +
  Client applications usually need not call&nbsp;<b>bind</b>&nbsp;at all—</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737625(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>connect</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;chooses
 +
  an unused port automatically. When&nbsp;<b>bind</b>&nbsp;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&nbsp;<b>connect</b>,&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms739168(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>listen</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>,</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741559(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSAConnect</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>,
 +
  or&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741628(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSAJoinLeaf</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEADDRNOTAVAIL</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10049</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Cannot
 +
  assign requested address.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
 +
  requested address is not valid in its context. This normally results from an
 +
  attempt to&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737550(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>bind</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;to
 +
  an address that is not valid for the local computer. This can also result
 +
  from&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms737625(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>connect</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>,&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>sendto</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>,&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741559(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSAConnect</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>,</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741628(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSAJoinLeaf</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>,
 +
  or&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741693(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSASendTo</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;when
 +
  the remote address or port is not valid for a remote computer (for example,
 +
  address or port 0).</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAENETDOWN</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10050</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Network
 +
  is down.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAENETUNREACH</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10051</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Network
 +
  is unreachable.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  socket operation was attempted to an unreachable network. This usually means
 +
  the local software knows no route to reach the remote host.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAENETRESET</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10052</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Network
 +
  dropped connection on reset.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>setsockopt</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;if
 +
  an attempt is made to set&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ee470551(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>SO_KEEPALIVE</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;on
 +
  a connection that has already failed.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAECONNABORTED</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10053</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Software
 +
  caused connection abort.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  established connection was aborted by the software in your host computer,
 +
  possibly due to a data transmission time-out or protocol error.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAECONNRESET</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10054</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Connection
 +
  reset by peer.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>setsockopt</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAENOBUFS</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10055</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>No
 +
  buffer space available.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  operation on a socket could not be performed because the system lacked
 +
  sufficient buffer space or because a queue was full.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEISCONN</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10056</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Socket
 +
  is already connected.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  connect request was made on an already-connected socket. Some implementations
 +
  also return this error if&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>sendto</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;is
 +
  called on a connected SOCK_DGRAM socket (for SOCK_STREAM sockets, the&nbsp;<i>to</i>&nbsp;parameter
 +
  in<b>sendto</b>&nbsp;is ignored) although other implementations treat this as
 +
  a legal occurrence.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAENOTCONN</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10057</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Socket
 +
  is not connected.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  request to send or receive data was disallowed because the socket is not
 +
  connected and (when sending on a datagram socket using&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740148(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>sendto</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>)
 +
  no address was supplied. Any other type of operation might also return this
 +
  error—for example,&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740476(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>setsockopt</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;setting&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ee470551(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>SO_KEEPALIVE</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;if
 +
  the connection has been reset.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAESHUTDOWN</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10058</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Cannot
 +
  send after socket shutdown.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  request to send or receive data was disallowed because the socket had already
 +
  been shut down in that direction with a previous&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740481(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>shutdown</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;call.
 +
  By calling&nbsp;<b>shutdown</b>&nbsp;a partial close of a socket is
 +
  requested, which is a signal that sending or receiving, or both have been
 +
  discontinued.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAETOOMANYREFS</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10059</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Too
 +
  many references.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Too
 +
  many references to some kernel object.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAETIMEDOUT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10060</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Connection
 +
  timed out.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAECONNREFUSED</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10061</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Connection
 +
  refused.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAELOOP</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10062</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Cannot
 +
  translate name.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Cannot
 +
  translate a name.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAENAMETOOLONG</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10063</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Name
 +
  too long.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  name component or a name was too long.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEHOSTDOWN</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10064</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Host
 +
  is down.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEHOSTUNREACH</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10065</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>No
 +
  route to host.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  socket operation was attempted to an unreachable host. See WSAENETUNREACH.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAENOTEMPTY</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10066</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Directory
 +
  not empty.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Cannot
 +
  remove a directory that is not empty.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEPROCLIM</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10067</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Too
 +
  many processes.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  Windows Sockets implementation may have a limit on the number of applications
 +
  that can use it simultaneously.&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742213(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSAStartup</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;may
 +
  fail with this error if the limit has been reached.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEUSERS</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10068</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>User
 +
  quota exceeded.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Ran
 +
  out of user quota.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEDQUOT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10069</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Disk
 +
  quota exceeded.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Ran
 +
  out of disk quota.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAESTALE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10070</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Stale
 +
  file handle reference.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
 +
  file handle reference is no longer available.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEREMOTE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10071</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Item
 +
  is remote.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
 +
  item is not available locally.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSASYSNOTREADY</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10091</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Network
 +
  subsystem is unavailable.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>This
 +
  error is returned by&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742213(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSAStartup</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;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:</span></p>
 +
  <p class=MsoNormal style='margin-right:7.5pt;margin-left:.25in;text-indent:
 +
  -.25in;line-height:normal'><span style='font-size:10.0pt;font-family:Symbol;
 +
  color:#2A2A2A'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 +
  </span></span><span style='font-size:12.0pt;font-family:"Times New Roman","serif";
 +
  color:#2A2A2A'>That the appropriate Windows Sockets DLL file is in the
 +
  current path.</span></p>
 +
  <p class=MsoNormal style='margin-right:7.5pt;margin-left:.25in;text-indent:
 +
  -.25in;line-height:normal'><span style='font-size:10.0pt;font-family:Symbol;
 +
  color:#2A2A2A'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 +
  </span></span><span style='font-size:12.0pt;font-family:"Times New Roman","serif";
 +
  color:#2A2A2A'>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.</span></p>
 +
  <p class=MsoNormal style='margin-right:7.5pt;margin-left:.25in;text-indent:
 +
  -.25in;line-height:normal'><span style='font-size:10.0pt;font-family:Symbol;
 +
  color:#2A2A2A'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 +
  </span></span><span style='font-size:12.0pt;font-family:"Times New Roman","serif";
 +
  color:#2A2A2A'>The Windows Sockets implementation documentation to be sure
 +
  all necessary components are currently installed and configured correctly.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAVERNOTSUPPORTED</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10092</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Winsock.dll
 +
  version out of range.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSANOTINITIALISED</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10093</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Successful
 +
  WSAStartup not yet performed.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Either
 +
  the application has not called&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742213(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSAStartup</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;or&nbsp;<b>WSAStartup</b>&nbsp;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</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741549(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSACleanup</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;has
 +
  been called too many times.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEDISCON</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10101</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Graceful
 +
  shutdown in progress.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Returned
 +
  by&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741688(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSARecv</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;and&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741686(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSARecvFrom</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;to
 +
  indicate that the remote party has initiated a graceful shutdown sequence.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAENOMORE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10102</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>No
 +
  more results.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>No
 +
  more results can be returned by the&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741641(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSALookupServiceNext</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>function.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAECANCELLED</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10103</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Call
 +
  has been canceled.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  call to the&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741637(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSALookupServiceEnd</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;function
 +
  was made while this call was still processing. The call has been canceled.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEINVALIDPROCTABLE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10104</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Procedure
 +
  call table is invalid.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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&nbsp;<b>NULL</b>.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEINVALIDPROVIDER</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10105</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Service
 +
  provider is invalid.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
 +
  requested service provider is invalid. This error is returned by the</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742239(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSCGetProviderInfo</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;and&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742240(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSCGetProviderInfo32</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEPROVIDERFAILEDINIT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10106</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Service
 +
  provider failed to initialize.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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 (</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms684175(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>LoadLibrary</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;failed)
 +
  or the provider's&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742296(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSPStartup</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;or&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms740047(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>NSPStartup</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>function
 +
  failed.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSASYSCALLFAILURE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10107</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>System
 +
  call failure.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  system call that should never fail has failed. This is a generic error code,
 +
  returned under various conditions.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Returned
 +
  when a system call that should never fail does fail. For example, if a call
 +
  to&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms742219(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WaitForMultipleEvents</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;fails
 +
  or one of the registry functions fails trying to manipulate the
 +
  protocol/namespace catalogs.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>Returned
 +
  when a provider does not return SUCCESS and does not provide an extended
 +
  error code. Can indicate a service provider implementation error.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSASERVICE_NOT_FOUND</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10108</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Service
 +
  not found.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>No
 +
  such service is known. The service cannot be found in the specified name
 +
  space.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSATYPE_NOT_FOUND</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10109</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Class
 +
  type not found.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
 +
  specified class was not found.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_E_NO_MORE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10110</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>No
 +
  more results.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>No
 +
  more results can be returned by the&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741641(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSALookupServiceNext</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>function.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_E_CANCELLED</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10111</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Call
 +
  was canceled.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  call to the&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741637(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSALookupServiceEnd</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;function
 +
  was made while this call was still processing. The call has been canceled.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAEREFUSED</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>10112</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Database
 +
  query was refused.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  database query failed because it was actively refused.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSAHOST_NOT_FOUND</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11001</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Host
 +
  not found.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSATRY_AGAIN</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11002</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Nonauthoritative
 +
  host not found.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSANO_RECOVERY</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11003</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>This
 +
  is a nonrecoverable error.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSANO_DATA</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11004</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Valid
 +
  name, no data record of requested type.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms738524(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>gethostbyname</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;or&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms741522(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>WSAAsyncGetHostByName</span></b></a><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>)
 +
  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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_RECEIVERS</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11005</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  receivers.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>At
 +
  least one QoS reserve has arrived.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_SENDERS</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11006</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  senders.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>At
 +
  least one QoS send path has arrived.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_NO_SENDERS</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11007</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>No
 +
  QoS senders.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>There
 +
  are no QoS senders.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_NO_RECEIVERS</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11008</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  no receivers.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>There
 +
  are no QoS receivers.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_REQUEST_CONFIRMED</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11009</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  request confirmed.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
 +
  QoS reserve request has been confirmed.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_ADMISSION_FAILURE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11010</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  admission error.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  QoS error occurred due to lack of resources.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_POLICY_FAILURE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11011</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  policy failure.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>The
 +
  QoS request was rejected because the policy system couldn't allocate the
 +
  requested resource within the existing policy.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_BAD_STYLE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11012</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  bad style.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  unknown or conflicting QoS style was encountered.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_BAD_OBJECT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11013</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  bad object.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  problem was encountered with some part of the filterspec or the
 +
  provider-specific buffer in general.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_TRAFFIC_CTRL_ERROR</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11014</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  traffic control error.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>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.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_GENERIC_ERROR</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11015</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  generic error.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  general QoS error.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_ESERVICETYPE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11016</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  service type error.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid or unrecognized service type was found in the QoS flowspec.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EFLOWSPEC</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11017</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>QoS
 +
  flowspec error.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid or inconsistent flowspec was found in the&nbsp;</span><a
 +
  href="http://msdn.microsoft.com/en-us/library/windows/desktop/aa374024(v=vs.85).aspx"><b><span
 +
  style='font-size:12.0pt;font-family:"Segoe UI Semibold","sans-serif";
 +
  color:#00188F;text-decoration:none'>QOS</span></b></a><span style='font-size:
 +
  12.0pt;font-family:"Times New Roman","serif";color:#454545'>&nbsp;structure.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EPROVSPECBUF</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11018</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
 +
  QoS provider buffer.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid QoS provider-specific buffer.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EFILTERSTYLE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11019</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
 +
  QoS filter style.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid QoS filter style was used.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EFILTERTYPE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11020</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
 +
  QoS filter type.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid QoS filter type was used.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EFILTERCOUNT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11021</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Incorrect
 +
  QoS filter count.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  incorrect number of QoS FILTERSPECs were specified in the FLOWDESCRIPTOR.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EOBJLENGTH</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11022</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
 +
  QoS object length.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  object with an invalid ObjectLength field was specified in the QoS
 +
  provider-specific buffer.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EFLOWCOUNT</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11023</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Incorrect
 +
  QoS flow count.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  incorrect number of flow descriptors was specified in the QoS structure.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EUNKOWNPSOBJ</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11024</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Unrecognized
 +
  QoS object.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  unrecognized object was found in the QoS provider-specific buffer.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EPOLICYOBJ</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11025</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
 +
  QoS policy object.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid policy object was found in the QoS provider-specific buffer.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EFLOWDESC</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11026</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
 +
  QoS flow descriptor.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid QoS flow descriptor was found in the flow descriptor list.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EPSFLOWSPEC</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11027</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
 +
  QoS provider-specific flowspec.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid or inconsistent flowspec was found in the QoS provider-specific
 +
  buffer.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_EPSFILTERSPEC</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11028</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
 +
  QoS provider-specific filterspec.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid FILTERSPEC was found in the QoS provider-specific buffer.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_ESDMODEOBJ</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11029</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
 +
  QoS shape discard mode object.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid shape discard mode object was found in the QoS provider-specific
 +
  buffer.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_ESHAPERATEOBJ</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11030</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Invalid
 +
  QoS shaping rate object.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>An
 +
  invalid shaping rate object was found in the QoS provider-specific buffer.</span></p>
 +
  </td>
 +
</tr>
 +
<tr>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><b><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>WSA_QOS_RESERVED_PETYPE</span></b></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>11031</span></p>
 +
  </td>
 +
  <td valign=top style='border:none;border-bottom:solid #DBDBDB 1.0pt;
 +
  padding:7.5pt 6.0pt 7.5pt 6.0pt'>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:7.5pt;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#2A2A2A'>Reserved
 +
  policy QoS element type.</span></p>
 +
  <p class=MsoNormal style='margin-top:0in;margin-right:7.5pt;margin-bottom:
 +
  0in;margin-left:.5in;margin-bottom:.0001pt;line-height:normal'><span
 +
  style='font-size:12.0pt;font-family:"Times New Roman","serif";color:#454545'>A
 +
  reserved policy element was found in the QoS provider-specific buffer.</span></p>
 +
  </td>
 +
</tr>
 +
</table>

Latest revision as of 16:28, 28 October 2013

Back to Miscellaneous



From Microsoft:

Windows Sockets Error Codes

Most Windows Sockets 2 functions do not return the specific cause of an error when the function returns. For information, see the Handling Winsock Errors  topic.

The  WSAGetLastError  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 FormatMessage  function can be used to obtain the message string for the returned error.

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

The following list describes the possible error codes returned by the WSAGetLastError 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.

Return code/value

Description

WSA_INVALID_HANDLE

6

Specified event object handle is invalid.

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.

WSA_NOT_ENOUGH_MEMORY

8

Insufficient memory available.

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.

WSA_INVALID_PARAMETER

87

One or more parameters are invalid.

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.

WSA_OPERATION_ABORTED

995

Overlapped operation aborted.

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.

WSA_IO_INCOMPLETE

996

Overlapped I/O event object not in signaled state.

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.

WSA_IO_PENDING

997

Overlapped operations will complete later.

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.

WSAEINTR

10004

Interrupted function call.

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>.

WSAEBADF

10009

File handle is not valid.

The file handle supplied is not valid.

WSAEACCES

10013

Permission denied.

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).

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.

WSAEFAULT

10014

Bad address.

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).

WSAEINVAL

10022

Invalid argument.

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.

WSAEMFILE

10024

Too many open files.

Too many open sockets. Each implementation may have a maximum number of socket handles available, either globally, per process, or per thread.

WSAEWOULDBLOCK

10035

Resource temporarily unavailable.

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.

WSAEINPROGRESS

10036

Operation now in progress.

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.

WSAEALREADY

10037

Operation already in progress.

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.

WSAENOTSOCK

10038

Socket operation on nonsocket.

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.

WSAEDESTADDRREQ

10039

Destination address required.

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.

WSAEMSGSIZE

10040

Message too long.

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.

WSAEPROTOTYPE

10041

Protocol wrong type for socket.

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.

WSAENOPROTOOPT

10042

Bad protocol option.

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.

WSAEPROTONOSUPPORT

10043

Protocol not supported.

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.

WSAESOCKTNOSUPPORT

10044

Socket type not supported.

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.

WSAEOPNOTSUPP

10045

Operation not supported.

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.

WSAEPFNOSUPPORT

10046

Protocol family not supported.

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.

WSAEAFNOSUPPORT

10047

Address family not supported by protocol family.

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>.

WSAEADDRINUSE

10048

Address already in use.

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>.

WSAEADDRNOTAVAIL

10049

Cannot assign requested address.

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).

WSAENETDOWN

10050

Network is down.

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.

WSAENETUNREACH

10051

Network is unreachable.

A socket operation was attempted to an unreachable network. This usually means the local software knows no route to reach the remote host.

WSAENETRESET

10052

Network dropped connection on reset.

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.

WSAECONNABORTED

10053

Software caused connection abort.

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

WSAECONNRESET

10054

Connection reset by peer.

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.

WSAENOBUFS

10055

No buffer space available.

An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.

WSAEISCONN

10056

Socket is already connected.

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.

WSAENOTCONN

10057

Socket is not connected.

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.

WSAESHUTDOWN

10058

Cannot send after socket shutdown.

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.

WSAETOOMANYREFS

10059

Too many references.

Too many references to some kernel object.

WSAETIMEDOUT

10060

Connection timed out.

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.

WSAECONNREFUSED

10061

Connection refused.

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.

WSAELOOP

10062

Cannot translate name.

Cannot translate a name.

WSAENAMETOOLONG

10063

Name too long.

A name component or a name was too long.

WSAEHOSTDOWN

10064

Host is down.

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.

WSAEHOSTUNREACH

10065

No route to host.

A socket operation was attempted to an unreachable host. See WSAENETUNREACH.

WSAENOTEMPTY

10066

Directory not empty.

Cannot remove a directory that is not empty.

WSAEPROCLIM

10067

Too many processes.

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.

WSAEUSERS

10068

User quota exceeded.

Ran out of user quota.

WSAEDQUOT

10069

Disk quota exceeded.

Ran out of disk quota.

WSAESTALE

10070

Stale file handle reference.

The file handle reference is no longer available.

WSAEREMOTE

10071

Item is remote.

The item is not available locally.

WSASYSNOTREADY

10091

Network subsystem is unavailable.

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:

·         That the appropriate Windows Sockets DLL file is in the current path.

·         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.

·         The Windows Sockets implementation documentation to be sure all necessary components are currently installed and configured correctly.

WSAVERNOTSUPPORTED

10092

Winsock.dll version out of range.

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.

WSANOTINITIALISED

10093

Successful WSAStartup not yet performed.

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.

WSAEDISCON

10101

Graceful shutdown in progress.

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.

WSAENOMORE

10102

No more results.

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.

WSAECANCELLED

10103

Call has been canceled.

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.

WSAEINVALIDPROCTABLE

10104

Procedure call table is invalid.

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.

WSAEINVALIDPROVIDER

10105

Service provider is invalid.

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.

WSAEPROVIDERFAILEDINIT

10106

Service provider failed to initialize.

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.

WSASYSCALLFAILURE

10107

System call failure.

A system call that should never fail has failed. This is a generic error code, returned under various conditions.

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.

Returned when a provider does not return SUCCESS and does not provide an extended error code. Can indicate a service provider implementation error.

WSASERVICE_NOT_FOUND

10108

Service not found.

No such service is known. The service cannot be found in the specified name space.

WSATYPE_NOT_FOUND

10109

Class type not found.

The specified class was not found.

WSA_E_NO_MORE

10110

No more results.

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.

WSA_E_CANCELLED

10111

Call was canceled.

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.

WSAEREFUSED

10112

Database query was refused.

A database query failed because it was actively refused.

WSAHOST_NOT_FOUND

11001

Host not found.

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.

WSATRY_AGAIN

11002

Nonauthoritative host not found.

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.

WSANO_RECOVERY

11003

This is a nonrecoverable error.

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.

WSANO_DATA

11004

Valid name, no data record of requested type.

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.

WSA_QOS_RECEIVERS

11005

QoS receivers.

At least one QoS reserve has arrived.

WSA_QOS_SENDERS

11006

QoS senders.

At least one QoS send path has arrived.

WSA_QOS_NO_SENDERS

11007

No QoS senders.

There are no QoS senders.

WSA_QOS_NO_RECEIVERS

11008

QoS no receivers.

There are no QoS receivers.

WSA_QOS_REQUEST_CONFIRMED

11009

QoS request confirmed.

The QoS reserve request has been confirmed.

WSA_QOS_ADMISSION_FAILURE

11010

QoS admission error.

A QoS error occurred due to lack of resources.

WSA_QOS_POLICY_FAILURE

11011

QoS policy failure.

The QoS request was rejected because the policy system couldn't allocate the requested resource within the existing policy.

WSA_QOS_BAD_STYLE

11012

QoS bad style.

An unknown or conflicting QoS style was encountered.

WSA_QOS_BAD_OBJECT

11013

QoS bad object.

A problem was encountered with some part of the filterspec or the provider-specific buffer in general.

WSA_QOS_TRAFFIC_CTRL_ERROR

11014

QoS traffic control error.

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.

WSA_QOS_GENERIC_ERROR

11015

QoS generic error.

A general QoS error.

WSA_QOS_ESERVICETYPE

11016

QoS service type error.

An invalid or unrecognized service type was found in the QoS flowspec.

WSA_QOS_EFLOWSPEC

11017

QoS flowspec error.

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.

WSA_QOS_EPROVSPECBUF

11018

Invalid QoS provider buffer.

An invalid QoS provider-specific buffer.

WSA_QOS_EFILTERSTYLE

11019

Invalid QoS filter style.

An invalid QoS filter style was used.

WSA_QOS_EFILTERTYPE

11020

Invalid QoS filter type.

An invalid QoS filter type was used.

WSA_QOS_EFILTERCOUNT

11021

Incorrect QoS filter count.

An incorrect number of QoS FILTERSPECs were specified in the FLOWDESCRIPTOR.

WSA_QOS_EOBJLENGTH

11022

Invalid QoS object length.

An object with an invalid ObjectLength field was specified in the QoS provider-specific buffer.

WSA_QOS_EFLOWCOUNT

11023

Incorrect QoS flow count.

An incorrect number of flow descriptors was specified in the QoS structure.

WSA_QOS_EUNKOWNPSOBJ

11024

Unrecognized QoS object.

An unrecognized object was found in the QoS provider-specific buffer.

WSA_QOS_EPOLICYOBJ

11025

Invalid QoS policy object.

An invalid policy object was found in the QoS provider-specific buffer.

WSA_QOS_EFLOWDESC

11026

Invalid QoS flow descriptor.

An invalid QoS flow descriptor was found in the flow descriptor list.

WSA_QOS_EPSFLOWSPEC

11027

Invalid QoS provider-specific flowspec.

An invalid or inconsistent flowspec was found in the QoS provider-specific buffer.

WSA_QOS_EPSFILTERSPEC

11028

Invalid QoS provider-specific filterspec.

An invalid FILTERSPEC was found in the QoS provider-specific buffer.

WSA_QOS_ESDMODEOBJ

11029

Invalid QoS shape discard mode object.

An invalid shape discard mode object was found in the QoS provider-specific buffer.

WSA_QOS_ESHAPERATEOBJ

11030

Invalid QoS shaping rate object.

An invalid shaping rate object was found in the QoS provider-specific buffer.

WSA_QOS_RESERVED_PETYPE

11031

Reserved policy QoS element type.

A reserved policy element was found in the QoS provider-specific buffer.