Processing HTTP responses

x::http::useragent::base::response
    resp=ua->request(x::http::GET, "https://localhost");

std::cout << resp->message.get_satus_code()
      << " " << resp->message.get_reason_phrase() << std::endl;

for (auto hdr: resp->message)
{
    std::cout << hdr.first << "="
          << hdr.second.value() << std::endl;
}

if (resp->has_content())
{
    std::copy(resp->begin(), resp->end(),
          std::ostreambuf_iterator<char>(std::cout.rdbuf()));
    std::cout << std::flush;
}

request() returns response to an HTTP request. Note that certain fatal errors, like a failure to connect to the requested server, result in a thrown exception, rather than a response object.

x::http::useragent::base::response is a reference to a reference-counted object that contains the following: