Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
static_url::set_host_ipvfuture

Set the host to an address.

Synopsis
static_url&
set_host_ipvfuture(
    core::string_view s);
Description

The host is set to the specified IPvFuture string. The host type is host_type::ipvfuture.

Example
assert( url().[link url.ref.boost__urls__static_url.set_host_ipvfuture `set_host_ipvfuture`]( "v42.bis" ).[link url.ref.boost__urls__static_url.buffer `buffer`]() == "//[v42.bis]" );
Complexity

Linear in this->size() + s.size().

Postconditions
this->[link url.ref.boost__urls__static_url.has_authority `has_authority`]() == true && this->[link url.ref.boost__urls__static_url.host_ipvfuture `host_ipvfuture`]) == s && this->[link url.ref.boost__urls__host_type `host_type`]() == [link url.ref.boost__urls__host_type `host_type::ipvfuture`]
Exception Safety

Strong guarantee. Calls to allocate may throw. Exceptions thrown on invalid input.

Exceptions

Type

Thrown On

system_error

s contains an invalid percent-encoding.

Parameters

Name

Description

s

The string to set.

BNF
IPvFuture     = "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" )
Specification
See Also

set_encoded_host, set_encoded_host_address, set_encoded_host_name, set_host, set_host_address, set_host_ipv4, set_host_ipv6, /root/project/libs/url/include/boost/url/static_url.hpp


PrevUpHomeNext