| 129 | } |
| 130 | |
| 131 | static bool IsRFC4843(const struct wireaddr *addr) |
| 132 | { |
| 133 | return IsIPv6(addr) && (GetByte(addr, 15) == 0x20 && GetByte(addr, 14) == 0x01 && GetByte(addr, 13) == 0x00 && (GetByte(addr, 12) & 0xF0) == 0x10); |
| 134 | } |
| 135 | |
| 136 | static bool IsTor(const struct wireaddr *addr) |
| 137 | { |
no test coverage detected