|
| HttpsClientSession (boost::asio::io_context &ioc, ssl::context &ctx) |
|
void | run (const std::string &etpServerHost, uint16_t etpServerPort, const std::string &etpServerTarget, int version, std::string authorization="", const std::string &proxyHost="", uint16_t proxyPort=80, const std::string &proxyAuthorization="") |
|
void | on_resolve (boost::system::error_code ec, tcp::resolver::results_type results) |
|
void | on_connect (boost::system::error_code ec) |
|
void | on_proxy_handshake_write (boost::system::error_code ec, std::size_t bytes_transferred) |
|
void | on_proxy_handshake_read (boost::system::error_code ec, std::size_t bytes_transferred) |
|
void | on_handshake (boost::system::error_code ec) |
|
void | on_write (boost::system::error_code ec, std::size_t bytes_transferred) |
|
void | on_read (boost::system::error_code ec, std::size_t bytes_transferred) |
|
void | on_shutdown (boost::system::error_code ec) |
|
const http::response< http::string_body > & | getResponse () const |
|
◆ on_proxy_handshake_write()
void ETP_NS::HttpsClientSession::on_proxy_handshake_write |
( |
boost::system::error_code | ec, |
|
|
std::size_t | bytes_transferred ) |
|
inline |
Set the skip parse option. This option controls whether or not the parser expects to see an HTTP body, regardless of the presence or absence of certain fields such as Content-Length or a chunked Transfer-Encoding. Depending on the request, some responses do not carry a body. For example, a 200 response to a CONNECT request from a tunneling proxy, or a response to a HEAD request. In these cases, callers may use this function inform the parser that no body is expected. The parser will consider the message complete after the header has been received.
- Parameters
-
v | true to set the skip body option or false to disable it. |
- Note
- This function must called before any bytes are processed.
The documentation for this class was generated from the following file: