![]() |
Home | Libraries | People | FAQ | More |
Set the host to an address.
url_base& set_host_ipv6( ipv6_address const& addr);
The host is set to the specified IPv6 address. The host type is host_type::ipv6
.
assert( [link url.ref.boost__urls__url_base.url `url`]().[link url.ref.boost__urls__url_base.set_host_ipv6 `set_host_ipv6`]( ipv6_address( "1::6:c0a8:1" ) ).[link url.ref.boost__urls__url_base.authority `authority`]().[link url.ref.boost__urls__url_base.buffer `buffer`]() == "[1::6:c0a8:1]" );
this->[link url.ref.boost__urls__url_base.has_authority `has_authority`]() == true && this->[link url.ref.boost__urls__url_base.host_ipv6_address `host_ipv6_address`]() == addr && this->[link url.ref.boost__urls__url_base.host_type `host_type`]() == [link url.ref.boost__urls__host_type `host_type::ipv6`]
Linear in this->size()
.
Strong guarantee. Calls to allocate may throw.
Name |
Description |
---|---|
|
The address to set. |
IPv6address = 6( h16 ":" ) ls32 / "::" 5( h16 ":" ) ls32 / [ h16 ] "::" 4( h16 ":" ) ls32 / [ *1( h16 ":" ) h16 ] "::" 3( h16 ":" ) ls32 / [ *2( h16 ":" ) h16 ] "::" 2( h16 ":" ) ls32 / [ *3( h16 ":" ) h16 ] "::" h16 ":" ls32 / [ *4( h16 ":" ) h16 ] "::" ls32 / [ *5( h16 ":" ) h16 ] "::" h16 / [ *6( h16 ":" ) h16 ] "::" ls32 = ( h16 ":" h16 ) / IPv4address ; least-significant 32 bits of address h16 = 1*4HEXDIG ; 16 bits of address represented in hexadecimal
set_encoded_host
, set_encoded_host_address
, set_encoded_host_name
, set_host
, set_host_address
, set_host_ipv4
, set_host_ipvfuture
, set_host_name
.