| 360 | } |
| 361 | |
| 362 | bool CNetAddr::IsRFC6052() const |
| 363 | { |
| 364 | return IsIPv6() && |
| 365 | HasPrefix(m_addr, std::array<uint8_t, 12>{0x00, 0x64, 0xFF, 0x9B, 0x00, 0x00, |
| 366 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}); |
| 367 | } |
| 368 | |
| 369 | bool CNetAddr::IsRFC4380() const |
| 370 | { |