| 156 | } |
| 157 | |
| 158 | static void close_test_socket(int sock) |
| 159 | { |
| 160 | if (sock >= 0) |
| 161 | { |
| 162 | sal_closesocket(sock); |
| 163 | LOG_I("Closed socket %d", sock); |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | /* Server thread function */ |
| 168 | static void server_thread_entry(void *parameter) |
no test coverage detected