| 18 | |
| 19 | |
| 20 | BroadCastServer::BroadCastServer (int port) |
| 21 | { |
| 22 | this->port = port; |
| 23 | connect_socket = INVALID_SOCKET; |
| 24 | memset (&socket_addr, 0, sizeof (socket_addr)); |
| 25 | strcpy (address, "255.255.255.255"); |
| 26 | wsa_initialized = false; |
| 27 | } |
| 28 | |
| 29 | BroadCastServer::BroadCastServer (const char *address, int port) |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected