| 142 | } |
| 143 | |
| 144 | static void socket_shutdown(cbm_sock_t fd) { |
| 145 | #ifdef _WIN32 |
| 146 | (void)shutdown(fd, SD_BOTH); |
| 147 | #else |
| 148 | (void)shutdown(fd, SHUT_RDWR); |
| 149 | #endif |
| 150 | } |
| 151 | |
| 152 | static bool connection_interrupted(cbm_http_conn_t *connection) { |
| 153 | cbm_httpd_t *owner = connection->owner; |
no outgoing calls
no test coverage detected