Set the host to an address
<include/boost/url/url_base.hpp>
url_base&
set_host_ipvfuture(core::string_view s);
The host is set to the specified IPvFuture string. The host type is host_type::ipvfuture .
assert( url().set_host_ipvfuture( "v42.bis" ).buffer() == "//[v42.bis]" );
this->has_authority() == true && this->host_ipvfuture) == s && this->host_type() == host_type::ipvfuture
Calls to allocate may throw. Exceptions thrown on invalid input.
IPvFuture = "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" )
Name | Thrown on |
---|---|
`s` |
contains an invalid percent-encoding. |
Name | Description |
---|---|
s | The string to set. |
set_encoded_host , set_encoded_host_address , set_encoded_host_name , set_host , set_host_address , set_host_ipv4 , set_host_ipv6 , set_host_name .