| 12 | |
| 13 | |
| 14 | MultiCastServer::MultiCastServer (const char *local_ip, int local_port) |
| 15 | { |
| 16 | strcpy (this->local_ip, local_ip); |
| 17 | this->local_port = local_port; |
| 18 | server_socket = INVALID_SOCKET; |
| 19 | memset (&server_addr, 0, sizeof (server_addr)); |
| 20 | wsa_initialized = false; |
| 21 | } |
| 22 | |
| 23 | int MultiCastServer::init () |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected