home *** CD-ROM | disk | FTP | other *** search
/ CICA 1993 December / CICA_Shareware_for_Windows_CD-ROM_Walnut_Creek_December_1993.iso / win_nt / sock_api / errno.rc < prev    next >
Text File  |  1993-03-24  |  3KB  |  58 lines

  1. #include <winsock.h>
  2.  
  3. STRINGTABLE
  4. BEGIN
  5.   WSABASEERR,         "[0] No Error"
  6.   WSAEINTR,           "[10004] Interrupted system call"
  7.   WSAEBADF,           "[10009] Bad file number"
  8.   WSAEACCES,          "[10013] Permission denied"
  9.   WSAEFAULT,          "[10014] Bad address"
  10.   WSAEINVAL,          "[10022] Invalid argument"
  11.   WSAEMFILE,          "[10024] Too many open files"
  12.   WSAEWOULDBLOCK,     "[10035] Operation would block"
  13.   WSAEINPROGRESS,     "[10036] Operation now in progress"
  14.   WSAEALREADY,        "[10037] Operation already in progress"
  15.   WSAENOTSOCK,        "[10038] Socket operation on non-socket"
  16.   WSAEDESTADDRREQ,    "[10039] Destination address required"
  17.   WSAEMSGSIZE,        "[10040] Message too long"
  18.   WSAEPROTOTYPE,      "[10041] Protocol wrong type for socket"
  19.   WSAENOPROTOOPT,     "[10042] Bad protocol option"
  20.   WSAEPROTONOSUPPORT, "[10043] Protocol not supported"
  21.   WSAESOCKTNOSUPPORT, "[10044] Socket type not supported"
  22.   WSAEOPNOTSUPP,      "[10045] Operation not supported on socket"
  23.   WSAEPFNOSUPPORT,    "[10046] Protocol family not supported"
  24.   WSAEAFNOSUPPORT,    "[10047] Address family not supported by protocol family"
  25.   WSAEADDRINUSE,      "[10048] Address already in use"
  26.   WSAEADDRNOTAVAIL,   "[10049] Can't assign requested address"
  27.   WSAENETDOWN,        "[10050] Network is down"
  28.   WSAENETUNREACH,     "[10051] Network is unreachable"
  29.   WSAENETRESET,       "[10052] Net dropped connection or reset"
  30.   WSAECONNABORTED,    "[10053] Software caused connection abort"
  31.   WSAECONNRESET,      "[10054] Connection reset by peer"
  32.   WSAENOBUFS,         "[10055] No buffer space available"
  33.   WSAEISCONN,         "[10056] Socket is already connected"
  34.   WSAENOTCONN,        "[10057] Socket is not connected"
  35.   WSAESHUTDOWN,       "[10058] Can't send after socket shutdown"
  36.   WSAETOOMANYREFS,    "[10059] Too many references, can't splice"
  37.   WSAETIMEDOUT,       "[10060] Connection timed out"
  38.   WSAECONNREFUSED,    "[10061] Connection refused"
  39.   WSAELOOP,           "[10062] Too many levels of symbolic links"
  40.   WSAENAMETOOLONG,    "[10063] File name too long"
  41.   WSAEHOSTDOWN,       "[10064] Host is down"
  42.   WSAEHOSTUNREACH,    "[10065] No Route to Host"
  43.   WSAENOTEMPTY,       "[10066] Directory not empty"
  44.   WSAEPROCLIM,        "[10067] Too many processes"
  45.   WSAEUSERS,          "[10068] Too many users"
  46.   WSAEDQUOT,          "[10069] Disc Quota Exceeded"
  47.   WSAESTALE,          "[10070] Stale NFS file handle"
  48.   WSAEREMOTE,         "[10071] Too many levels of remote in path"
  49.   WSASYSNOTREADY,     "[10091] Network SubSystem is unavailable"
  50.   WSAVERNOTSUPPORTED, "[10092] WINSOCK DLL Version out of range"
  51.   WSANOTINITIALIZED,  "[10093] Successful WSASTARTUP not yet performed"
  52.   WSAHOST_NOT_FOUND,  "[11001] Host not found"
  53.   WSATRY_AGAIN,       "[11002] Non-Authoritative Host not found"
  54.   WSANO_RECOVERY,     "[11003] Non-Recoverable errors: FORMERR, REFUSED, NOTIMP"
  55.   WSANO_DATA,         "[11004] Valid name, no data record of requested 
  56. type"
  57. END
  58.