Interrupt and exit loops */
| 119 | } |
| 120 | /** Interrupt and exit loops */ |
| 121 | void Interrupt() |
| 122 | { |
| 123 | std::unique_lock<std::mutex> lock(cs); |
| 124 | running = false; |
| 125 | cond.notify_all(); |
| 126 | } |
| 127 | }; |
| 128 | |
| 129 | struct HTTPPathHandler |
no outgoing calls
no test coverage detected