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