| 25 | #define CONNECTION_CLOSED ENOTCONN |
| 26 | #define CONNECTION_ABORTED ECONNABORTED |
| 27 | inline int InitSocketLibrary(void) |
| 28 | { |
| 29 | return 0; |
| 30 | } |
| 31 | #define NATIVE_SELECT(SOCK, READFDS, WRITEFDS, EXCEPTFDS, TIMEOUT) \ |
| 32 | ::select(SOCK, READFDS, WRITEFDS, EXCEPTFDS, TIMEOUT) |
| 33 | #else // defined(_WIN32) && !defined(__CYGWIN__) |
no outgoing calls
no test coverage detected