| 69 | } |
| 70 | |
| 71 | void HttpHandler::HandleConnect(const HttpRequest* req, HttpResponse* resp) { |
| 72 | MethodNotAllowed(req, resp); |
| 73 | } |
| 74 | |
| 75 | void HttpHandler::MethodNotAllowed(const HttpRequest* req, HttpResponse* resp) { |
| 76 | resp->SetStatus(HttpResponse::Status_MethodNotAllowed); |
nothing calls this directly
no outgoing calls
no test coverage detected