| 91 | } |
| 92 | |
| 93 | static bool IsRFC2544(const struct wireaddr *addr) |
| 94 | { |
| 95 | return IsIPv4(addr) && GetByte(addr, 3) == 198 && (GetByte(addr, 2) == 18 || GetByte(addr, 2) == 19); |
| 96 | } |
| 97 | |
| 98 | static bool IsRFC3927(const struct wireaddr *addr) |
| 99 | { |
no test coverage detected