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 09fbc2c975.
PrevUpHomeNext
static_url_base::encoded_host_address

(Inherited from url_view_base)

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( url_view( "https://www%2droot.example.com/" ).encoded_host_address() == "www%2droot.example.com" );
Complexity

Constant.

Exception Safety

Throws nothing.

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

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

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

PrevUpHomeNext