:relfileprefix: ../../../ [#5935551ABEE44FBAA715A23A7BF81EB58EF77802] = Function static_url::set_encoded_host pass:v,q[Set the host] == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/static_url.adoc[static_url]& set_encoded_host(xref:boost/urls/pct_string_view.adoc[pct_string_view] s); ---- == Description pass:v,q[Depending on the contents of the passed] pass:v,q[string, this function sets the host:] * pass:v,q[If the string is a valid IPv4 address,] pass:v,q[then the host is set to the address.] pass:v,q[The host type is] xref:boost/urls/host_type/ipv4.adoc[host_type::ipv4.] * pass:v,q[If the string is a valid IPv6 address] pass:v,q[enclosed in square brackets, then the] pass:v,q[host is set to that address.] pass:v,q[The host type is] xref:boost/urls/host_type/ipv6.adoc[host_type::ipv6.] * pass:v,q[If the string is a valid IPvFuture] pass:v,q[address enclosed in square brackets, then] pass:v,q[the host is set to that address.] pass:v,q[The host type is] xref:boost/urls/host_type/ipvfuture.adoc[host_type::ipvfuture.] * pass:v,q[Otherwise, the host name is set to] pass:v,q[the string. This string can contain percent] pass:v,q[escapes, or can be empty.] pass:v,q[Escapes in the string are preserved,] pass:v,q[and reserved characters in the string] pass:v,q[are percent-escaped in the result.] pass:v,q[The host type is] xref:boost/urls/host_type/name.adoc[host_type::name.] pass:v,q[In all cases, when this function returns,] pass:v,q[the URL contains an authority.] === Example [,cpp] ---- assert( url( "http://www.example.com" ).set_host( "127.0.0.1" ).buffer() == "http://127.0.0.1" ); ---- === Postconditions [,cpp] ---- this->has_authority() == true ---- === Complexity pass:v,q[Linear in `this->size() + s.size()`.] === Exception Safety pass:v,q[Strong guarantee.] pass:v,q[Calls to allocate may throw.] pass:v,q[Exceptions thrown on invalid input.] === BNF [,cpp] ---- host = IP-literal / IPv4address / reg-name IP-literal = "[" ( IPv6address / IPvFuture ) "]" reg-name = *( unreserved / pct-encoded / "-" / ".") ---- === Specification * link:https://en.wikipedia.org/wiki/IPv4[IPv4 (Wikipedia)] * link:https://datatracker.ietf.org/doc/html/rfc4291[IP Version 6 Addressing Architecture (rfc4291)] * link:https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2[ 3.2.2. Host (rfc3986)] == Return Value * `` == Parameters |=== | Name | Type | *s* | `pct_string_view` |===