| 27 | } |
| 28 | |
| 29 | static bool IsRFC6052(const struct wireaddr *addr) |
| 30 | { |
| 31 | static const unsigned char pchRFC6052[] = {0,0x64,0xFF,0x9B,0,0,0,0,0,0,0,0}; |
| 32 | return addr->type == ADDR_TYPE_IPV6 |
| 33 | && memcmp(addr->addr, pchRFC6052, sizeof(pchRFC6052)) == 0; |
| 34 | } |
| 35 | |
| 36 | static bool IsRFC3964(const struct wireaddr *addr) |
| 37 | { |