| 91 | } |
| 92 | |
| 93 | SocketClientUDP::SocketClientUDP (const char *ip_addr, int port) |
| 94 | { |
| 95 | strcpy (this->ip_addr, ip_addr); |
| 96 | this->port = port; |
| 97 | connect_socket = INVALID_SOCKET; |
| 98 | memset (&socket_addr, 0, sizeof (socket_addr)); |
| 99 | wsa_initialized = false; |
| 100 | } |
| 101 | |
| 102 | int SocketClientUDP::connect () |
| 103 | { |
nothing calls this directly
no outgoing calls
no test coverage detected