| 49 | IPCSocketClient(std::string path = "/tmp/jsonrpc20.sock") : _path{std::move(path)} { memset(&_server, 0, sizeof(_server)); } |
| 50 | |
| 51 | ~IPCSocketClient() { this->disconnect(); } |
| 52 | |
| 53 | /// Connect to the configured socket path. |
| 54 | /// Connection will retry every @c ms for @c attempts times if errno is EAGAIN |
nothing calls this directly
no test coverage detected