| 11 | #pragma comment(lib, "AdvApi32.lib") |
| 12 | |
| 13 | SocketServerUDP::SocketServerUDP (int local_port) |
| 14 | { |
| 15 | this->local_port = local_port; |
| 16 | server_socket = INVALID_SOCKET; |
| 17 | memset (&server_addr, 0, sizeof (server_addr)); |
| 18 | wsa_initialized = false; |
| 19 | } |
| 20 | |
| 21 | int SocketServerUDP::bind () |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected