| 61 | } |
| 62 | |
| 63 | void HttpHandler::HandleOptions(const HttpRequest* req, HttpResponse* resp) { |
| 64 | MethodNotAllowed(req, resp); |
| 65 | } |
| 66 | |
| 67 | void HttpHandler::HandleTrace(const HttpRequest* req, HttpResponse* resp) { |
| 68 | MethodNotAllowed(req, resp); |
nothing calls this directly
no outgoing calls
no test coverage detected