Windows Sockets 错误码及出错原因
本文转自http://blog.csdn.net/khler/archive/2007/07/11/1685023.aspx
Windows Sockets在头文件winsock.h中定义了所有的错误码,它们包括以“WSA”打头的Windows Sockets实现返回的错误码和Berkeley Sockets定义的错误码全集。定义Berkeley Sockets错误码是为了确保原有软件的可移植性。
A.1 Windows Sockets错误码列表
Windows Sockets错误码
|
Berkeley 对应错误码
|
错误号
|
解 释
|
WSAEINTR
|
EINTR
|
10004
|
同标准C
|
WSAEBADF
|
EBADF
|
10009
|
同标准C
|
WSAEACCES
|
EACCES
|
10013
|
同标准C
|
WSAEFAULT
|
EFAULT
|
10014
|
同标准C
|
WSAEINVAL
|
EINVAL
|
10022
|
同标准C
|
WSAEMFILE
|
EMFILE
|
10024
|
同标准C
|
WSAEWOULDBLOCK
|
EWOULDBLOCK
|
10035
|
同BSD
|
WSAEINPROGRESS
|
EINPROGRESS
|
10036
|
当一个阻塞函数正在进行时,调用任何Windows Sockets API函数均返回此错误
|
WSAEALREADY
|
EALREADY
|
10037
|
同BSD
|
WSAENOTSOCK
|
ENOTSOCK
|
10038
|
同BSD
|
WSAEDESTADDRREQ
|
EDESTADDRREQ
|
10039
|
同BSD
|
WSAEMSGSIZE
|
EMSGSIZE
|
10040
|
同BSD
|
WSAEPROTOTYPE
|
EPROTOTYPE
|
10041
|
同BSD
|
WSAENOPROTOOPT
|
ENOPROTOOPT
|
10042
|
同BSD
|
WSAEPROTONOSUPPORT
|
EPROTONOSUPPORT
|
10043
|
同BSD
|
WSAESOCKTNOSUPPORT
|
ESOCKTNOSUPPORT
|
10044
|
同BSD
|
WSAEOPNOTSUPP
|
EOPNOTSUPP
|
10045
|
同BSD
|
WSAEPFNOSUPPORT
|
EPFNOSUPPORT
|
10046
|
同BSD
|
WSAEAFNOSUPPORT
|
EAFNOSUPPORT
|
10047
|
同BSD
|
WSAEADDRINUSE
|
EADDRINUSE
|
10048
|
同BSD
|
WSAEADDRNOTAVAIL
|
EADDRNOTAVAIL
|
10049
|
同BSD
|
WSAENETDOWN
|
ENETDOWN
|
10050
|
同BSD。任何时候只要Windows Sockets实现检测到网络子系统失败,它就报告此错误。
|
WSAENETUNREACH
|
ENETUNREACH
|
10051
|
同BSD
|
WSAENETRESET
|
ENETRESET
|
10052
|
同BSD
|
WSAECONNABORTED
|
ECONNABORTED
|
10053
|
同BSD
|
WSAECONNRESET
|
ECONNRESET
|
10054
|
同BSD
|
WSAENOBUFS
|
ENOBUFS
|
10055
|
同BSD
|
WSAEISCONN
|
EISCONN
|
10056
|
同BSD
|
WSAENOTCONN
|
ENOTCONN
|
10057
|
同BSD
|
WSAESHUTDOWN
|
ESHUTDOWN
|
10058
|
同BSD
|
WSAETOOMANYREFS
|
ETOOMANYREFS
|
10059
|
同BSD
|
WSAETIMEDOUT
|
ETIMEDOUT
|
10060
|
同BSD
|
WSAECONNREFUSED
|
ECONNREFUSED
|
10061
|
同BSD
|
WSAELOOP
|
ELOOP
|
10062
|
同BSD
|
WSAENAMETOOLONG
|
ENAMETOOLONG
|
10063
|
同BSD
|
WSAEHOSTDOWN
|
EHOSTDOWN
|
10064
|
同BSD
|
WSAEHOSTUNREACH
|
EHOSTUNREACH
|
10065
|
同BSD
|
WSASYSNOTREADY
|
|
10091
|
由WSAStartup() 返回,指示网络子系统无法使用。
|
WSAVERNOTSUPPORTED
|
|
10092
|
由WSAStartup() 返回,指示Windows Sockets
DLL 不能支持此应用程序。 |
WSANOTINITIALISED
|
|
10093
|
由除WSAStartup()之外的其它函数返回,指示 尚没有一次成功的WSAStartup() 调用执行过。
|
WSAEDISCON
|
|
10101
|
由WSARecv()和WSARecvFrom()返回,指示远程方已经初始化了一个“雅致”的shutdown序列。
|
WSAHOST_NOT_FOUND
|
HOST_NOT_FOUND
|
11001
|
同BSD
|
WSATRY_AGAIN
|
TRY_AGAIN
|
11002
|
同BSD
|
WSANO_RECOVERY
|
NO_RECOVERY
|
11003
|
同BSD
|
WSANO_DATA
|
NO_DATA
|
11004
|
同BSD
|
A.2 Windows Sockets错误码扩展描述
Error Codes
The following is a list of possible error codes returned by the WSAGetLastError call, along with their extended explanations. Errors are listed in alphabetical order by error macro. Some error codes defined in WINSOCK2.H are not returned from any function - these have not been listed here.
-
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 sendto without broadcast permission being set using setsockopt(SO_BROADCAST).
WSAEADDRINUSE
-
(10048)
-
Address already in use.
- Only one usage of each socket address (protocol/IP address/port) is normally 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 wasn't 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 will choose an unused port automatically. When bind is called with a wild-card address (involving ADDR_ANY), a WSAEADDRINUSE error could be delayed until the specific address is "committed." This could happen with a call to other function later, including connect, listen, WSAConnect or WSAJoinLeaf.
WSAEADDRNOTAVAIL
-
(10049)
-
Cannot assign requested address.
- The requested address is not valid in its context. Normally results from an attempt to bind to an address that is not valid for the local machine. This can also result from connect, sendto, WSAConnect, WSAJoinLeaf, or WSASendTo when the remote address or port is not valid for a remote machine (e.g. address or port 0).
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" (i.e. AF_INET for Internet Protocols) and a generic protocol type (i.e. SOCK_STREAM). This error will be 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, e.g. in sendto.
WSAEALREADY
-
(10037)
-
Operation already in progress.
- An operation was attempted on a non-blocking socket that already had an operation in progress - i.e. calling connect a second time on a non-blocking socket that is already connecting, or canceling an asynchronous request (WSAAsyncGetXbyY) that has already been canceled or completed.
WSAECONNABORTED
-
(10053)
-
Software caused connection abort.
- An established connection was aborted by the software in your host machine, possibly due to a data transmission timeout or protocol error.
WSAECONNREFUSED
-
(10061)
-
Connection refused.
- No connection could be made because the target machine actively refused it. This usually results from trying to connect to a service that is inactive on the foreign host - i.e. one with no server application running.
WSAECONNRESET
-
(10054)
-
Connection reset by peer.
- A 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, or the remote host used 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.
WSAEDESTADDRREQ
-
(10039)
-
Destination address required.
- A required address was omitted from an operation on a socket. For example, this error will be returned if sendto is called with the remote address of ADDR_ANY.
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 struct sockaddr is smaller than sizeof(struct sockaddr).
WSAEHOSTDOWN
-
(10064)
-
Host is down.
- A socket operation failed because the destination host was 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
WSAEINPROGRESS
-
(10036)
-
Operation now in progress.
- A blocking operation is currently executing. Windows Sockets only allows a single blocking operation to be outstanding per task (or thread), 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.
WSAEINTR
-
(10004)
-
Interrupted function call.
- A blocking operation was interrupted by a call to WSACancelBlockingCall.
WSAEINVAL
-
(10022)
-
Invalid argument.
- 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.
WSAEISCONN
-
(10056)
-
Socket is already connected.
- 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.
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.
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 into was smaller than the datagram itself.
WSAENETDOWN
-
(10050)
-
Network is down.
- A socket operation encountered a dead network. This could indicate a serious failure of the network system (i.e. the protocol stack that the WinSock DLL runs over), the network interface, or the local network itself.
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 setsockopt if an attempt is made to set SO_KEEPALIVE on a connection that has already failed.
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.
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.
WSAENOPROTOOPT
-
(10042)
-
Bad protocol option.
- An unknown, invalid or unsupported option or level was specified in a getsockopt or setsockopt call.
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 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.
WSAENOTSOCK
-
(10038)
-
Socket operation on non-socket.
- 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.
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, for example, 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. Has a slightly different meaning to WSAEAFNOSUPPORT, but is interchangeable in most cases, and all Windows Sockets functions that return one of these specify WSAEAFNOSUPPORT.
WSAEPROCLIM
-
(10067)
-
Too many processes.
- A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously. WSAStartup may fail with this error if the limit has been reached.
WSAEPROTONOSUPPORT
-
(10043)
-
Protocol not supported.
- 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.
WSAEPROTOTYPE
-
(10041)
-
Protocol wrong type for socket.
- 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.
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 shutdown call. By calling shutdown a partial close of a socket is requested, which is a signal that sending or receiving or both has been discontinued.
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 socket call, and the implementation does not support SOCK_RAW sockets at all.
WSAETIMEDOUT
-
(10060)
-
Connection timed out.
- A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
WSATYPE_NOT_FOUND
-
(10109)
-
Class type not found.
- The specified class was not found.
WSAEWOULDBLOCK
-
(10035)
-
Resource temporarily unavailable.
- This error is returned from operations on non-blocking sockets that cannot be completed immediately, for example recv when no data is queued to be read from the socket. It is a non-fatal error, and the operation should be retried later. It is normal for WSAEWOULDBLOCK to be reported as the result from calling connect on a non-blocking SOCK_STREAM socket, since some time must elapse for the connection to be established.
WSAHOST_NOT_FOUND
-
(11001)
-
Host not found.
- No such host is known. The name is not an official hostname 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 the specified name could not be found in the relevant database.
WSA_INVALID_HANDLE
-
(OS dependent)
-
Specified event object handle is invalid.
- An application attempts to use an event object, but the specified handle is not valid.
WSA_INVALID_PARAMETER
-
(OS dependent)
-
One or more parameters are invalid.
- An application used a Windows Sockets function which directly maps to a Win32 function. The Win32 function is indicating a problem with one or more parameters.
WSAINVALIDPROCTABLE
-
(OS dependent)
-
Invalid procedure table from service provider.
- A service provider returned a bogus proc table to WS2_32.DLL. (Usually caused by one or more of the function pointers being NULL.)
WSAINVALIDPROVIDER
-
(OS dependent)
-
Invalid service provider version number.
- A service provider returned a version number other than 2.0.
WSA_IO_INCOMPLETE
-
(OS dependent)
-
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 WSAGetOverlappedResult (with the fWait flag set to false) in a polling mode to determine when an overlapped operation has completed will get this error code until the operation is complete.
WSA_IO_PENDING
-
(OS dependent)
-
Overlapped operations will complete later.
- The application has initiated an overlapped operation which cannot be completed immediately. A completion indication will be given at a later time when the operation has been completed.
WSA_NOT_ENOUGH_MEMORY
-
(OS dependent)
-
Insufficient memory available.
- An application used a Windows Sockets function which directly maps to a Win32 function. The Win32 function is indicating a lack of required memory resources.
WSANOTINITIALISED
-
(10093)
-
Successful WSAStartup not yet performed.
- Either the application hasn't called WSAStartup or WSAStartup failed. The application may be accessing a socket which the current active task does not own (i.e. trying to share a socket between tasks), or WSACleanup has been called too many times.
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 hostname -> address translation attempt (using gethostbyname or WSAAsyncGetHostByName) which uses the DNS (Domain Name Server), and an MX record is returned but no A record - indicating the host itself exists, but is not directly reachable.
WSANO_RECOVERY
-
(11003)
-
This is a non-recoverable error.
- This indicates some sort of non-recoverable error occurred during a database lookup. This may be because the database files (e.g. BSD-compatible HOSTS, SERVICES or PROTOCOLS files) could not be found, or a DNS request was returned by the server with a severe error.
WSAPROVIDERFAILEDINIT
-
(OS dependent)
-
Unable to initialize a service provider.
- Either a service provider's DLL could not be loaded ( LoadLibrary failed) or the provider's WSPStartup/ NSPStartup function failed.
WSASYSCALLFAILURE
-
(OS dependent)
-
System call failure.
- Returned when a system call that should never fail does. For example, if a call to WaitForMultipleObjects fails or one of the registry functions fails trying to manipulate theprotocol/namespace catalogs.
WSASYSNOTREADY
-
(10091)
-
Network subsystem is unavailable.
- 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:
- 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.
WSATRY_AGAIN
-
(11002)
-
Non-authoritative host not found.
- This is usually a temporary error during hostname 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.
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.
WSAEDISCON
-
(10094)
-
Graceful shutdown in progress.
- Returned by WSARecv and WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.
WSA_OPERATION_ABORTED
-
(OS dependent)
-
Overlapped operation aborted.
- An overlapped operation was canceled due to the closure of the socket, or the execution of the SIO_FLUSH command in WSAIoctl.
-
-
- =========================================================
-
-
Window与Linux Socket错误码对应表
-
-
转自 http://blog.163.com/aragorn_1024/blog/static/12606592720107352329908/
下面以表格的形式列出了WSAGetLastError()函数有可能返回的错误代码和对应的解释。错误代码的数值对于所有的Windows Sockets兼容实现都是一致的。
错误代码 Berkeley对应代码 错误数值 说明 WSAEINTR EINT 10004 函数调用中断。该错误表明由于对WSACancelBlockingCall的调用,造成了一次调用被强行中断。 WSAEBADF EBADF 10009 文件句柄错误。该错误表明提供的文件句柄无效。 WSAEACCES EACCES 10013 权限被拒。尝试对套接字进行操作,但被禁止。若试图在sendto或WSASendTo中使用一个广播地址,但是尚未用setsockopt和SO_BROADCAST这两个选项设置广播权限,便会产生这类错误。 WSAEFAULT EFAULT 10014 地址无效。传给Winsock函数的指针地址无效。若指定的缓冲区太小,也会产生这个错误。 WSAEINVAL EINVAL 10022 参数无效。指定了一个无效参数。例如,假如为WSAIoctl调用指定了一个无效控制代码,便会产生这个错误。另外,它也可能表明套接字当前的状态有错,例如在一个目前没有监听的套接字上调用accept或WSAAccept。 WSAEMFILE BLOCK EMFILE BLOCK 10024 打开文件过多。提示打开的套接字太多了。通常,Microsoft提供者只受到系统内可用资源数量的限制。 WSAEINPRO EINPRO 10036 资源暂时不可用。对非锁定套接字来说,如果请求操作不能立即执行的话,通常会返回这个错误。比如说,在一个非暂停套接字上调用conn ect,就会返回这个错误。因为连接请求不能立即执行。 GRESS GRESS 操作正在进行中。当前正在执行非锁定操作。一般来说不会出现这个错误,除非正在开 发1 6 位Wi n s o c k 应用程序。
WSAEALREADY EALREADY 10037 操作已完成。一般来说,在非锁定套接字上尝试已处于进程中的操作时,会产生这个错误。比如,在一个已处于连接进程的非锁定套接字上,再一次调用connect或WSAConnect。另外,服务提供者处于执行回调函数(针对支持回调例程的Winsock函数)的进程中时,也会出现这个错误。 WSAENOTSOCK ENOTSOCK 10038 无效套接字上的套接字操作。任何一个把SOCKET句柄当作参数的Winsock函数都会返回这个错误。它表明提供的套接字句柄无效。
续表
错误代码 Berkeley对应代码 错误数值 说明 WSAEDESTADDR REQ EDESTADDR REQ 10039 需要目标地址。这个错误表明没有提供具体地址。比方说,假如在调用sendto时,将目标地址设为INADDR_ANY(任意地址),便会返回这个错误。 WSAEMSGSIZE EMSGSIZE 10040 消息过长。这个错误的含义很多。如果在一个数据报套接字上发送一条消息,这条消息对内部缓冲区而言太大的话,就会产生这个错误。再比如,由于网络本身的限制,使一条消息过长,也会产生这个错误。最后,如果收到数据报之后,缓冲区太小,不能接收消息时,也会产生这个错误。 WSAEPROTOTYPE EPROTOTYPE 10041 套接字协议类型有误。在socket或WSASocket调用中指定的协议不支持指定的套接字类型。比如,要求建立SOCK_STREAM类型的一个IP套接字,同时指定协议为IPPROTO_UDP,便会产生这样的错误。 WSAENOPROTO OPT ENOPROTOOPT 10042 协议选项错误。表明在getsockopt或setsockopt调用中,指定的套接字选项或级别不明、未获支持或者无效。 WSAEPROTONOUPPORT EPROTONO SUPPORT 10043 不支持的协议。系统中没有安装请求的协议或没有相应的实施方案。比如,如果系统中没有安装TCP/IP,而试着建立TCP或UDP套接字时,就会产生这个错误。 WSAESOCKTNO SUPPORT ESOCKTNO SUPPORT 10044 不支持的套接字类型。对指定的地址家族来说,没有相应的具体套接字类型支持。比如,在向一个不支持原始套接字的协议请求建立一个SOCK_RAW套接字类型时,就会产生这个错误。 WSAEOPNOTSUPPORT EOPNOT SUPPORT 10045 不支持的操作。表明针对指定的对象,试图采取的操作未获支持。通常,如果试着在一个不支持调用Winsock函数的套接字上调用了Winsock时,就会产生这个错误。 WSAEPFNOSUPPORT EPFNO SUPPORT 10046 不支持的协议家族。请求的协议家族不存在,或系统内尚未安装。多数情况下,这个错误可与WSAEAFNOSUPPORT互换(两者等价);后者出现得更为频繁。 WSAEAFNOSUPPORT EAFNO SUPPORT 10047 地址家族不支持请求的操作。对套接字类型不支持的操作来说,在试着执行它时,就会出现这个错误。比如,在类型为SOCK_STREAM的一个套接字上调用sendto或WSASendTo函数时,就会产生这个错误。另外,在调用socket或WSASocket函数的时候,若同时请求了一个无效的地址家族、套接字类型及协议组合,也会产生这个错误。
续表
错误代码 Berkeley对应代码 错误数值 说明 WSAEADDRINUSE EADDRINUSE 10048 地址正在使用。正常情况下,每个套接字只允许使用一个套接字地址这个错误一般和bind、connect和WSAConnect这三个函数有关。可在setsockopt函数中设置套接字选项SO_REUSEA D D R ,允许多个套接字访问同一个本地I P 地址及端口号 WSAEADDRNOT AVAIL EADDRNOT AVAIL 10049 不能分配请求的地址。API调用中指定的地址对那个函数来说无效时,就会产生这样的错误。例如,若在bind调用中指定一个IP地址,但却没有对应的本地IP接口,便会产生这样的错误。另外,通过connect、WSAConnect、sendto、WSASendTo和WSAJoinLeaf这四个函数为准备连接的远程计算机指定端口0时,也会产生这样的错误。 WSAENETDOWN ENETDOWN 10050 网络断开。试图采取一项操作时,却发现网络连接中断。这可能是由于网络堆栈的错误,网络接口的故障,或者本地网络的问题造成的。 WSAENETUNREACH ENETUNREAC H 10051 网络不可抵达。试图采取一项操作时,却发现目标网络不可抵达(不可访问)。这意味着本地主机不知道如何抵达一个远程主机。换言之,目前没有已知的路由可抵达那个目标主机。 WSAENETRESET ENETRESET 10052 网络重设时断开了连接。由于“保持活动”操作检测到一个错误,造成网络连接的中断。若在一个已经无效的连接之上,通过setsockopt函数设置SO_KEEPALIVE选项,也会出现这样的错误。 WSAECONNABORT ED ECONNABORTED 10053 软件造成连接取消。由于软件错误,造成一个已经建立的连接被取消。典型情况下,这意味着连接是由于协议或超时错误而被取消的。 WSAECONNRESET ECONNRESET 10054 连接被对方重设。一个已经建立的连接被远程主机强行关闭。若远程主机上的进程异常中止运行(由于内存冲突或硬件故障),或者针对套接字执行了一次强行关闭,便会产生这样的错误。针对强行关闭的情况,可用SO_LINGER套接字选项和setsockopt来配置一个套接字 WSAENOBUFS ENOBUFS 10055 没有缓冲区空间。由于系统缺少足够的缓冲区空间,请求的操作不能执行。 WSAEISCONN EISCONN 10056 套接字已经连接。表明在一个已建立连接的套接字上,试图再建立一个连接。要注意的是,数据报和数据流套接字均有可能出现这样的错误。使用数据报套接字时,假如事先已通过connect或WSAConnect调用,为数据报通信关联了一个端点的地址,那么以后试图再次调用sendto或WSASendTo,便会产生这样的错误。 WSAENOTCONN ENOTCONN 10057 套接字尚未连接。若在一个尚未建立连接的“面向连接”套接字上发出数据收发请求,便会产生这样的错误。
续表
错误代码 Berkeley对应代码 错误数值 说明 WSAESHUTDOWN ESHUTDOWN 10058 套接字关闭后不能发送。表明已通过对shutdown的一次调用,部分关闭了套接字,但后又请求进行数据的收发操作。要注意的是,这种错误只会在已经关闭的那个数据流动方向上才会发生。举个例子来说,完成数据发送后,若调用shutdown,那么以后任何数据发送调用都会产生这样的错误。 WSAETIMEDOUT ETIMEDOUT 10060 连接超时。若发出了一个连接请求,但经过规定的时间,远程计算机仍未作出正确的响应(或根本没有任何响应),便会发生这样的错误。要想收到这样的错误,通常需要先在套接字上设置好SO_SNDTIMEO和SO_RCVTIMEO选项,然后调用connect及WSAConnect函数。 WSAECONNREFUS ED ECONNREFUSED 10061 连接被拒。由于被目标机器拒绝,连接无法建立。这通常是由于在远程机器上,没有任何应用程序可在那个地址之上,为连接提供服务。 WSAEHOSTDOWN EHOSTDOWN 10064 主机关闭。这个错误指出由于目标主机关闭,造成操作失败。然而,应用程序此时更有可能收到的是一条WSAETIMEDOUT(连接超时)错误,因为对方关机的情况通常是在试图建立一个连接的时候发生的。 WSAEHOSTUNREA CH EHOSTUNREACH 10065 没有到主机的路由。应用程序试图访问一个不可抵达的主机。该错误类似于WSAENETUNREACH。 WSASYSNOTREA Y 10091 网络子系统不可用。调用WSAStartup时,若提供者不能正常工作(由于提供服务的基层系统不可用),便会返回这种错误。 WSAVERNOTSUPP ORTED 10092 Winsock. dll版本有误。表明不支持请求的Winsock提供者版本。 WSANOTINITIAL ISED 10093 Winsock尚未初始化。尚未成功完成对WSAStartup的一次调用。
===================================================================================