| 606 | uint32_t CNetAddr::GetByte(int32_t n) const { return ip[15 - n]; } |
| 607 | |
| 608 | bool CNetAddr::IsIPv4() const { return (memcmp(ip, pchIPv4, sizeof(pchIPv4)) == 0); } |
| 609 | |
| 610 | bool CNetAddr::IsIPv6() const { return (!IsIPv4() && !IsTor()); } |
| 611 |
no outgoing calls