<boost/url/ipv6_address.hpp>
constexpr
ipv6_address() = default;
» more...
Constructor.
constexpr
ipv6_address(ipv6_address const& other) = default;
» more...
Construct from a string.
ipv6_address(core::string_view s);
» more...
Construct from an array of bytes.
ipv6_address(bytes_type const& bytes) noexcept;
» more...
Construct from an IPv4 address.
ipv6_address(ipv4_address const& addr) noexcept;
» more...
Name | Thrown on |
---|---|
system_error |
The input failed to parse correctly. |
Name | Description |
---|---|
s | The string to parse. |
bytes | The value to construct from. |
addr | The address to construct from. |