| 351 | } |
| 352 | |
| 353 | static tcp::endpoint tcpEndpoint(NetworkAddress const& n) { |
| 354 | return tcp::endpoint(tcpAddress(n.ip), n.port); |
| 355 | } |
| 356 | |
| 357 | static udp::endpoint udpEndpoint(NetworkAddress const& n) { |
| 358 | return udp::endpoint(tcpAddress(n.ip), n.port); |
no test coverage detected