Is this an IPv4 address, or an IPv6-wrapped IPv4 */
| 57 | |
| 58 | /* Is this an IPv4 address, or an IPv6-wrapped IPv4 */ |
| 59 | static bool IsIPv4(const struct wireaddr *addr) |
| 60 | { |
| 61 | return addr->type == ADDR_TYPE_IPV4 || IPv4In6(addr) != 0; |
| 62 | } |
| 63 | |
| 64 | static bool IsIPv6(const struct wireaddr *addr) |
| 65 | { |