Lines Matching full:boost
8 #include <boost/asio/ip/address.hpp>
9 #include <boost/beast/http/field.hpp>
10 #include <boost/beast/http/fields.hpp>
11 #include <boost/beast/http/message.hpp>
12 #include <boost/beast/http/verb.hpp>
13 #include <boost/beast/websocket/rfc6455.hpp>
14 #include <boost/url/parse.hpp>
15 #include <boost/url/url.hpp>
16 #include <boost/url/url_view.hpp>
29 using Body = boost::beast::http::request<bmcweb::HttpBody>;
33 boost::urls::url urlBase;
36 boost::asio::ip::address ipAddress;
66 void addHeader(boost::beast::http::field key, std::string_view value) in addHeader()
75 ipAddress = boost::asio::ip::address(); in clear()
80 boost::beast::http::verb method() const in method()
85 void method(boost::beast::http::verb verb) in method()
100 std::string_view getHeaderValue(boost::beast::http::field key) const in getHeaderValue()
105 void clearHeader(boost::beast::http::field key) in clearHeader()
120 boost::urls::url& url() in url()
125 boost::urls::url_view url() const in url()
130 const boost::beast::http::fields& fields() const in fields()
154 return boost::beast::websocket::is_upgrade(req); in isUpgrade()
165 auto result = boost::urls::parse_relative_ref(target()); in setUrlInfo()