| 720 | } |
| 721 | |
| 722 | void BaseRunner::receive_http_request(http::HttpCallback::RequestType request_type, |
| 723 | std::vector<std::pair<std::string, std::string>> headers, std::string path, |
| 724 | std::vector<std::pair<std::string, std::string>> args, std::string body, |
| 725 | std::unique_ptr<http::HttpRequestCallback> answer_callback) { |
| 726 | http_send_static_answer(404, "not found", std::move(answer_callback)); |
| 727 | } |
| 728 | |
| 729 | /* |
| 730 | * |
nothing calls this directly
no outgoing calls
no test coverage detected