| 101 | } |
| 102 | |
| 103 | static bool IsRFC6598(const struct wireaddr *addr) |
| 104 | { |
| 105 | return IsIPv4(addr) && GetByte(addr, 3) == 100 && GetByte(addr, 2) >= 64 && GetByte(addr, 2) <= 127; |
| 106 | } |
| 107 | |
| 108 | static bool IsRFC5737(const struct wireaddr *addr) |
| 109 | { |
no test coverage detected