| 222 | } |
| 223 | |
| 224 | void Server::Stop() { |
| 225 | LOG(TRACE) << "Entering Server::Stop"; |
| 226 | if (context_) { |
| 227 | mg_stop(context_); |
| 228 | context_ = NULL; |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | int Server::ProcessRequest(struct mg_connection* conn, |
| 233 | const struct mg_request_info* request_info) { |
no test coverage detected