| 533 | } |
| 534 | |
| 535 | static std::string IPv4ToString(Span<const uint8_t> a) |
| 536 | { |
| 537 | return strprintf("%u.%u.%u.%u", a[0], a[1], a[2], a[3]); |
| 538 | } |
| 539 | |
| 540 | // Return an IPv6 address text representation with zero compression as described in RFC 5952 |
| 541 | // ("A Recommendation for IPv6 Address Text Representation"). |