Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
url::encoded_host_address

Return the host.

Synopsis
pct_string_view
encoded_host_address() const;
Description

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

Example
assert( [link url.ref.boost__urls__url_view_base.url_view `url_view`]( "https://www%2droot.example.com/" ).[link url.ref.boost__urls__url.encoded_host_address `encoded_host_address`]() == "www%2droot.example.com" );
Complexity

Constant.

Exception Safety

Throws nothing.

BNF
[link url.ref.boost__urls__url.host `host`]        = IP-literal / IPv4address / reg-[link url.ref.boost__urls__host_type `name`]

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

reg-[link url.ref.boost__urls__host_type `name`]    = *( unreserved / pct-encoded / "-" / "." )
Specification

PrevUpHomeNext