| 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 |
| 97 | void CheckAndHandleError(const char *operation, BOOL result) const |
| 98 | {if (!result) HandleError(operation);} |
no test coverage detected