* Close the actual UDP socket. */
| 57 | * Close the actual UDP socket. |
| 58 | */ |
| 59 | void NetworkUDPSocketHandler::CloseSocket() |
| 60 | { |
| 61 | for (auto &s : this->sockets) { |
| 62 | closesocket(s.first); |
| 63 | } |
| 64 | this->sockets.clear(); |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Send a packet over UDP |
no test coverage detected