Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include <errno.h>
00018
00019 #ifndef ESOCKTNOSUPPORT
00020 #define ESOCKTNOSUPPORT WSAESOCKTNOSUPPORT
00021 #endif
00022
00023 #ifndef ECONNRESET
00024 #define ECONNRESET WSAECONNRESET
00025 #endif
00026
00027 #ifndef ENOTSOCK
00028 #define ENOTSOCK WSAENOTSOCK
00029 #endif
00030
00031 #ifndef EAFNOSUPPORT
00032 #define EAFNOSUPPORT WSAEAFNOSUPPORT
00033 #endif
00034
00035 #ifndef EPROTONOSUPPORT
00036 #define EPROTONOSUPPORT WSAEPROTONOSUPPORT
00037 #endif
00038
00039 #ifndef ENOBUFS
00040 #define ENOBUFS WSAENOBUFS
00041 #endif
00042
00043 #ifndef EISCONN
00044 #define EISCONN WSAEISCONN
00045 #endif
00046
00047 #ifndef ETIMEDOUT
00048 #define ETIMEDOUT WSAETIMEDOUT
00049 #endif
00050
00051 #ifndef ENETUNREACH
00052 #define ENETUNREACH WSAENETUNREACH
00053 #endif
00054
00055 #ifndef EADDRINUSE
00056 #define EADDRINUSE WSAEADDRINUSE
00057 #endif
00058
00059 #ifndef ECONNREFUSED
00060 #define ECONNREFUSED WSAECONNREFUSED
00061 #endif
00062
00063
00064
00065
00066
00067 #ifndef EWOULDBLOCK
00068 #define EWOULDBLOCK WSAEWOULDBLOCK
00069 #endif
00070
00071 #ifndef EINPROGRESS
00072 #define EINPROGRESS WSAEINPROGRESS
00073 #endif
00074
00075 #ifndef EALREADY
00076 #define EALREADY WSAEALREADY
00077 #endif
00078
00079 #ifndef EDESTADDRREQ
00080 #define EDESTADDRREQ WSAEDESTADDRREQ
00081 #endif
00082
00083 #ifndef EMSGSIZE
00084 #define EMSGSIZE WSAEMSGSIZE
00085 #endif
00086
00087 #ifndef EPROTOTYPE
00088 #define EPROTOTYPE WSAEPROTOTYPE
00089 #endif
00090
00091 #ifndef ENOPROTOOPT
00092 #define ENOPROTOOPT WSAENOPROTOOPT
00093 #endif
00094
00095 #ifndef EOPNOTSUPP
00096 #define EOPNOTSUPP WSAEOPNOTSUPP
00097 #endif
00098
00099 #ifndef EPFNOSUPPORT
00100 #define EPFNOSUPPORT WSAEPFNOSUPPORT
00101 #endif
00102
00103 #ifndef EADDRNOTAVAIL
00104 #define EADDRNOTAVAIL WSAEADDRNOTAVAIL
00105 #endif
00106
00107 #ifndef ENETDOWN
00108 #define ENETDOWN WSAENETDOWN
00109 #endif
00110
00111 #ifndef ENETRESET
00112 #define ENETRESET WSAENETRESET
00113 #endif
00114
00115 #ifndef ECONNABORTED
00116 #define ECONNABORTED WSAECONNABORTED
00117 #endif
00118
00119 #ifndef ENOTCONN
00120 #define ENOTCONN WSAENOTCONN
00121 #endif
00122
00123 #ifndef ESHUTDOWN
00124 #define ESHUTDOWN WSAESHUTDOWN
00125 #endif
00126
00127 #ifndef ETOOMANYREFS
00128 #define ETOOMANYREFS WSAETOOMANYREFS
00129 #endif
00130
00131 #ifndef ELOOP
00132 #define ELOOP WSAELOOP
00133 #endif
00134
00135 #ifndef ENAMETOOLONG
00136 #define ENAMETOOLONG WSAENAMETOOLONG
00137 #endif
00138
00139 #ifndef EHOSTDOWN
00140 #define EHOSTDOWN WSAEHOSTDOWN
00141 #endif
00142
00143 #ifndef EHOSTUNREACH
00144 #define EHOSTUNREACH WSAEHOSTUNREACH
00145 #endif
00146
00147 #ifndef ENOTEMPTY
00148 #define ENOTEMPTY WSAENOTEMPTY
00149 #endif
00150
00151 #ifndef EPROCLIM
00152 #define EPROCLIM WSAEPROCLIM
00153 #endif
00154
00155 #ifndef EUSERS
00156 #define EUSERS WSAEUSERS
00157 #endif
00158
00159 #ifndef EDQUOT
00160 #define EDQUOT WSAEDQUOT
00161 #endif
00162
00163 #ifndef ESTALE
00164 #define ESTALE WSAESTALE
00165 #endif
00166
00167 #ifndef EREMOTE
00168 #define EREMOTE WSAEREMOTE
00169 #endif