boost::urls::url_base::set_host_ipv4
Set the host to an address
Synopsis
Declared in header <boost/url/url_base.hpp>
url_base&
set_host_ipv4(ipv4_address const& addr);
Description
The host is set to the specified IPv4 address. The host type is host_type::ipv4 .
assert( url("http://www.example.com").set_host_ipv4( ipv4_address( "127.0.0.1" ) ).buffer() == "http://127.0.0.1" );
Linear in this->size()
.
this->has_authority() == true && this->host_ipv4_address() == addr && this->host_type() == host_type::ipv4