22 -> std::optional<ParseResult> {
auto parse_ipv4(std::string_view text) noexcept -> std::optional< IPv4Address >
Parse strict dotted-decimal IPv4 text.
Definition ipv4.hxx:129
auto parse_ipv6(std::string_view text) noexcept -> std::optional< IPv6Address >
Parse IPv6 text into sixteen network-order bytes.
Definition ipv6.hxx:283
auto parse_address(std::string_view text) noexcept -> std::optional< ParseResult >
Parse an IPv4 or IPv6 text address.
Definition parser.hxx:21
@ IPv4
Definition address.hxx:11
@ IPv6
Definition address.hxx:11
Address parser result with the concrete address family.
Definition address.hxx:41