| 1324 | address.sin_port = htons(PORT); |
| 1325 | // Binding socket to address |
| 1326 | if (bind(server_fd, (struct sockaddr *)&address, sizeof(address)) < 0) { |
| 1327 | perror("bind failed"); |
| 1328 | exit(EXIT_FAILURE); |
| 1329 | } |
nothing calls this directly
no outgoing calls
no test coverage detected