00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifdef WIN32
00019 #define EWOULDBLOCK WSAEWOULDBLOCK
00020 #define EINPROGRESS WSAEINPROGRESS
00021 #define EALREADY WSAEALREADY
00022 #define ENOTSOCK WSAENOTSOCK
00023 #define EDESTADDRREQ WSAEDESTADDRREQ
00024 #define EMSGSIZE WSAEMSGSIZE
00025 #define EPROTOTYPE WSAEPROTOTYPE
00026 #define ENOPROTOOPT WSAENOPROTOOPT
00027 #define EPROTONOSUPPORT WSAEPROTONOSUPPORT
00028 #define ESOCKTNOSUPPORT WSAESOCKTNOSUPPORT
00029 #define EOPNOTSUPP WSAEOPNOTSUPP
00030 #define EPFNOSUPPORT WSAEPFNOSUPPORT
00031 #define EAFNOSUPPORT WSAEAFNOSUPPORT
00032 #define EADDRINUSE WSAEADDRINUSE
00033 #define EADDRNOTAVAIL WSAEADDRNOTAVAIL
00034 #define ENETDOWN WSAENETDOWN
00035 #define ENETUNREACH WSAENETUNREACH
00036 #define ENETRESET WSAENETRESET
00037 #define ECONNABORTED WSAECONNABORTED
00038 #define ECONNRESET WSAECONNRESET
00039 #define ENOBUFS WSAENOBUFS
00040 #define EISCONN WSAEISCONN
00041 #define ENOTCONN WSAENOTCONN
00042 #define ESHUTDOWN WSAESHUTDOWN
00043 #define ETOOMANYREFS WSAETOOMANYREFS
00044 #define ETIMEDOUT WSAETIMEDOUT
00045 #define ECONNREFUSED WSAECONNREFUSED
00046 #define ELOOP WSAELOOP
00047
00048 #define EHOSTDOWN WSAEHOSTDOWN
00049 #define EHOSTUNREACH WSAEHOSTUNREACH
00050
00051 #define EPROCLIM WSAEPROCLIM
00052 #define EUSERS WSAEUSERS
00053 #define EDQUOT WSAEDQUOT
00054 #define ESTALE WSAESTALE
00055 #define EREMOTE WSAEREMOTE
00056 #endif
00057
00058
00059