Lines Matching refs:http

227         boost::beast::http::request_parser<bmcweb::HttpBody>& instance =  in initParser()
249 res.result(boost::beast::http::status::bad_request); in handle()
261 if (req->getHeaderValue(boost::beast::http::field::host).empty()) in handle()
263 res.result(boost::beast::http::status::bad_request); in handle()
311 req->getHeaderValue(boost::beast::http::field::upgrade)); in handle()
318 if (thisRes.result() != boost::beast::http::status::ok) in handle()
334 req->getHeaderValue(boost::beast::http::field::if_none_match); in handle()
387 res.addHeader(boost::beast::http::field::date, getCachedDateStr()); in completeRequest()
462 res.result(boost::beast::http::status::unauthorized); in handleContentLengthError()
472 res.result(boost::beast::http::status::payload_too_large); in handleContentLengthError()
492 boost::beast::http::async_read_header( in doReadHeaders()
504 if (ec == boost::beast::http::error::header_limit) in doReadHeaders()
509 res.result(boost::beast::http::status:: in doReadHeaders()
515 if (ec == boost::beast::http::error::end_of_stream) in doReadHeaders()
535 boost::beast::http::verb method = parser->get().method(); in doReadHeaders()
541 parser->get()[boost::beast::http::field::expect]; in doReadHeaders()
544 res.result(boost::beast::http::status::continue_); in doReadHeaders()
574 boost::beast::http::async_read_some( in doRead()
586 if (ec == boost::beast::http::error::body_limit) in doRead()
594 res.result(boost::beast::http::status:: in doRead()
646 if (res.result() == boost::beast::http::status::continue_) in afterDoWrite()
649 res.result(boost::beast::http::status::ok); in afterDoWrite()
681 boost::beast::http::message_generator(std::move(res.response)), in doWrite()
752 std::optional<boost::beast::http::request_parser<bmcweb::HttpBody>> parser;