| 7 | } |
| 8 | |
| 9 | UnixSocketServer::UnixSocketServer(const std::string &socket_path) |
| 10 | : server_fd_(-1), |
| 11 | socket_path_(socket_path), |
| 12 | running_(false) {} |
| 13 | |
| 14 | UnixSocketServer::~UnixSocketServer() { Stop(); } |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected