| 14 | |
| 15 | |
| 16 | MultiCastClient::MultiCastClient (const char *ip_addr, int port) |
| 17 | { |
| 18 | strcpy (this->ip_addr, ip_addr); |
| 19 | this->port = port; |
| 20 | client_socket = INVALID_SOCKET; |
| 21 | memset (&socket_addr, 0, sizeof (socket_addr)); |
| 22 | wsa_initialized = false; |
| 23 | } |
| 24 | |
| 25 | int MultiCastClient::init () |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected