| 90 | |
| 91 | virtual void HandleError(const char *operation) const; |
| 92 | void CheckAndHandleError_int(const char *operation, int result) const |
| 93 | {if (result == SOCKET_ERROR) HandleError(operation);} |
| 94 | void CheckAndHandleError(const char *operation, socket_t result) const |
| 95 | {if (result == static_cast<socket_t>(SOCKET_ERROR)) HandleError(operation);} |
| 96 | #ifdef USE_WINDOWS_STYLE_SOCKETS |
no test coverage detected