| 65 | } |
| 66 | |
| 67 | void HttpHandler::HandleTrace(const HttpRequest* req, HttpResponse* resp) { |
| 68 | MethodNotAllowed(req, resp); |
| 69 | } |
| 70 | |
| 71 | void HttpHandler::HandleConnect(const HttpRequest* req, HttpResponse* resp) { |
| 72 | MethodNotAllowed(req, resp); |
nothing calls this directly
no outgoing calls
no test coverage detected