| 2631 | } |
| 2632 | |
| 2633 | inline int shutdown_socket(socket_t sock) { |
| 2634 | #ifdef _WIN32 |
| 2635 | return shutdown(sock, SD_BOTH); |
| 2636 | #else |
| 2637 | return shutdown(sock, SHUT_RDWR); |
| 2638 | #endif |
| 2639 | } |
| 2640 | |
| 2641 | template <typename BindOrConnect> |
| 2642 | socket_t create_socket(const std::string &host, const std::string &ip, int port, |
no outgoing calls
no test coverage detected