| 19 | const auto kRetryLimit = 3; |
| 20 | |
| 21 | DaemonIpcClient::DaemonIpcClient(QObject *parent) |
| 22 | : QObject(parent), |
| 23 | m_socket{new QLocalSocket(this)} // NOSONAR - Qt memory |
| 24 | { |
| 25 | connect(m_socket, &QLocalSocket::disconnected, this, &DaemonIpcClient::handleDisconnected); |
| 26 | connect(m_socket, &QLocalSocket::errorOccurred, this, &DaemonIpcClient::handleErrorOccurred); |
| 27 | } |
| 28 | |
| 29 | bool DaemonIpcClient::connectToServer() |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected