Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit 0da16e0695.
PrevUpHomeNext
url_base::host_address

(Inherited from url_view_base)

Return the host.

Synopsis
template<
    class StringToken = string_token::return_string>
StringToken::result_type
host_address(
    StringToken&& token = {}) const;
Description

The value returned by this function depends on the type of host returned from the function host_type.

Example
assert( url_view( "https://[1::6:c0a8:1]/" ).host_address() == "1::6:c0a8:1" );
Complexity

Linear in this->host_address().size().

Exception Safety

Calls to allocate may throw.

BNF
host        = IP-literal / IPv4address / reg-name

IP-literal  = "[" ( IPv6address / IPvFuture  ) "]"

reg-name    = *( unreserved / pct-encoded / "-" / "." )
Specification

PrevUpHomeNext