| 628 | } |
| 629 | |
| 630 | bool CNetAddr::IsRFC4380() const { |
| 631 | return (GetByte(15) == 0x20 && GetByte(14) == 0x01 && GetByte(13) == 0 && GetByte(12) == 0); |
| 632 | } |
| 633 | |
| 634 | bool CNetAddr::IsRFC4862() const { |
| 635 | static const unsigned char pchRFC4862[] = {0xFE, 0x80, 0, 0, 0, 0, 0, 0}; |
no outgoing calls