| 53 | } |
| 54 | |
| 55 | void JsonServer::stop() |
| 56 | { |
| 57 | if (!_server->isListening()) |
| 58 | return; |
| 59 | |
| 60 | _server->close(); |
| 61 | Info(_log, "Stopped"); |
| 62 | } |
| 63 | |
| 64 | void JsonServer::handleSettingsUpdate(settings::type type, const QJsonDocument& config) |
| 65 | { |
nothing calls this directly
no test coverage detected