Skip to content
Snippets Groups Projects
Commit d3371ecf authored by rswindell's avatar rswindell
Browse files

Changed the way socket errors are test/displayed with WinSock (values more...

Changed the way socket errors are test/displayed with WinSock (values more inline with Unix sockets).
parent 70115d89
No related branches found
No related tags found
No related merge requests found
......@@ -69,21 +69,24 @@
#ifdef _WINSOCKAPI_
#undef EINTR
#define EINTR WSAEINTR
#define EINTR (WSAEINTR-WSABASEERR)
#undef ENOTSOCK
#define ENOTSOCK WSAENOTSOCK
#define ENOTSOCK (WSAENOTSOCK-WSABASEERR)
#undef EWOULDBLOCK
#define EWOULDBLOCK WSAEWOULDBLOCK
#define EWOULDBLOCK (WSAEWOULDBLOCK-WSABASEERR)
#undef ECONNRESET
#define ECONNRESET WSAECONNRESET
#define ECONNRESET (WSAECONNRESET-WSABASEERR)
#undef ESHUTDOWN
#define ESHUTDOWN (WSAESHUTDOWN-WSABASEERR)
#undef ECONNABORTED
#define ECONNABORTED WSAECONNABORTED
#define ECONNABORTED (WSAECONNABORTED-WSABASEERR)
#define s_addr S_un.S_addr
#define socklen_t int
#define ERROR_VALUE WSAGetLastError()
static wsa_error;
#define ERROR_VALUE ((wsa_error=WSAGetLastError())>0 ? wsa_error-WSABASEERR : wsa_error)
#else /* BSD sockets */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment