| 60 | |
| 61 | #if defined(ASIO_HAS_LOCAL_SOCKETS) |
| 62 | UnixSocketServer::UnixSocketServer(const ProtocolHandler* protocolHandler) : |
| 63 | SocketServer(protocolHandler), |
| 64 | acceptor(ios) { |
| 65 | } |
| 66 | |
| 67 | void UnixSocketServer::listen(const std::string& unixPath) { |
| 68 | if (std::filesystem::status(unixPath).type() == std::filesystem::file_type::socket) |
nothing calls this directly
no outgoing calls
no test coverage detected