| 372 | } |
| 373 | |
| 374 | bool CNetAddr::IsRFC6145() const |
| 375 | { |
| 376 | return IsIPv6() && |
| 377 | HasPrefix(m_addr, std::array<uint8_t, 12>{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 378 | 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00}); |
| 379 | } |
| 380 | |
| 381 | bool CNetAddr::IsRFC4843() const |
| 382 | { |