| 614 | namespace Socket |
| 615 | { |
| 616 | std::unique_ptr<IUdpSocket> createUdp() |
| 617 | { |
| 618 | initialiseWSA(); |
| 619 | return std::make_unique<UdpSocket>(); |
| 620 | } |
| 621 | |
| 622 | std::unique_ptr<INetworkEndpoint> resolve(Protocol protocol, const std::string& address, uint16_t port) |
| 623 | { |
no test coverage detected