| 383 | } |
| 384 | |
| 385 | bool CNetAddr::IsRFC6145() const |
| 386 | { |
| 387 | return IsIPv6() && |
| 388 | HasPrefix(m_addr, std::array<uint8_t, 12>{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 389 | 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00}); |
| 390 | } |
| 391 | |
| 392 | bool CNetAddr::IsRFC4843() const |
| 393 | { |