| 2507 | } |
| 2508 | |
| 2509 | inline int shutdown_socket(socket_t sock) { |
| 2510 | #ifdef _WIN32 |
| 2511 | return shutdown(sock, SD_BOTH); |
| 2512 | #else |
| 2513 | return shutdown(sock, SHUT_RDWR); |
| 2514 | #endif |
| 2515 | } |
| 2516 | |
| 2517 | template <typename BindOrConnect> |
| 2518 | socket_t create_socket(const char *host, const char *ip, int port, |
no outgoing calls
no test coverage detected