| 64 | } |
| 65 | |
| 66 | void HttpServer::stop() { |
| 67 | auto lock = mutex.asScopedLock(); |
| 68 | lock.lock(); |
| 69 | |
| 70 | if (!isStarted()) { |
| 71 | LOGGER.warn("Not started"); |
| 72 | return; |
| 73 | } |
| 74 | |
| 75 | stopInternal(); |
| 76 | } |
| 77 | |
| 78 | } |
| 79 |
nothing calls this directly
no test coverage detected