![]() |
Home | Libraries | People | FAQ | More |
(Inherited from url_base
)
Set the host.
url_base& set_host( core::string_view s);
Depending on the contents of the passed string, this function sets the host:
host_type::ipv4
.
host_type::ipv6
.
host_type::ipvfuture
.
host_type::name
.
In all cases, when this function returns, the URL contains an authority.
assert( [link url.ref.boost__urls__url_base.url `url`]( "http://www.example.com" ).[link url.ref.boost__urls__static_url_base.set_host `set_host`]( "127.0.0.1" ).[link url.ref.boost__urls__static_url_base.buffer `buffer`]() == "http://127.0.0.1" );
this->[link url.ref.boost__urls__static_url_base.has_authority `has_authority`]() == true
Linear in this->size() + s.size()
.
Strong guarantee. Calls to allocate may throw.
Name |
Description |
---|---|
|
The string to set. |
[link url.ref.boost__urls__static_url_base.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 / "-" / "." )
set_encoded_host
, set_encoded_host_address
, set_encoded_host_name
, set_host_address
, set_host_ipv4
, set_host_ipv6
, set_host_ipvfuture
, set_host_name
.