| 32 | } |
| 33 | |
| 34 | int Close(Socket s) |
| 35 | { |
| 36 | #if defined(__unix__) || defined(__APPLE__) |
| 37 | return close(s); |
| 38 | #elif defined(_MSC_VER) || defined(__MINGW32__) |
| 39 | return closesocket(s); |
| 40 | #endif |
| 41 | } |
| 42 | |
| 43 | |
| 44 | bool SetNonBlocking(Socket s) |
no outgoing calls
no test coverage detected