| 24 | typedef int SOCKET; |
| 25 | constexpr SOCKET INVALID_SOCKET = -1; |
| 26 | inline void closesocket( SOCKET s ) { close(s); } |
| 27 | inline int GetSocketError() { return errno; } |
| 28 | inline bool IgnoreSocketError( int e ) |
| 29 | { |
no outgoing calls
no test coverage detected