community.borland.com

Article #25535: Winsock error codes and brief descriptions

Problem:
Im getting INET errors in the log file but, I don't know what 
they mean

Solution:
The following are the error codes and their corresponding definitions
found in (winsock.h) or (winsock.pas).

 Error Definition       Errno
                               
 WSAEWOULDBLOCK         	10035
 WSAEINPROGRESS         	10036 
 WSAEALREADY            	10037
 WSAENOTSOCK            	10038
 WSAEDESTADDRREQ        	10039
 WSAEMSGSIZE            	10040
 WSAEPROTOTYPE          	10041
 WSAENOPROTOOPT         	10042
 WSAEPROTONOSUPPORT       10043
 WSAESOCKTNOSUPPORT       10044
 WSAEOPNOTSUPP          	10045
 WSAEPFNOSUPPORT        	10046
 WSAEAFNOSUPPORT        	10047
 WSAEADDRINUSE          	10048
 WSAEADDRNOTAVAIL       	10049
 WSAENETDOWN            	10050
 WSAENETUNREACH         	10051
 WSAENETRESET           	10052
 WSAECONNABORTED        	10053
 WSAECONNRESET          	10054
 WSAENOBUFS             	10055
 WSAEISCONN             	10056
 WSAENOTCONN            	10057
 WSAESHUTDOWN           	10058
 WSAETOOMANYREFS        	10059
 WSAETIMEDOUT           	10060
 WSAECONNREFUSED        	10061
 WSAELOOP               	10062
 WSAENAMETOOLONG        	10063
 WSAEHOSTDOWN           	10064
 WSAEHOSTUNREACH        	10065
 WSAENOTEMPTY           	10066
 WSAEPROCLIM            	10067
 WSAEUSERS              	10068
 WSAEDQUOT              	10069
 WSAESTALE              	10070
 WSAEREMOTE             	10071
 WSASYSNOTREADY         	10091
 WSAVERNOTSUPPORTED        10092
 WSANOTINITIALISED      	10093
 WSAHOST_NOT_FOUND      	11001
 WSATRY_AGAIN           	11002
 WSANO_RECOVERY         	11003
 WSANO_DATA             	11004

Last Modified: 26-OCT-00