| 989 | } |
| 990 | |
| 991 | uint64_t CNetAddr::GetHash() const |
| 992 | { |
| 993 | uint256 hash = Hash(&ip[0], &ip[16]); |
| 994 | uint64_t nRet; |
| 995 | memcpy(&nRet, &hash, sizeof(nRet)); |
| 996 | return nRet; |
| 997 | } |
| 998 | |
| 999 | // private extensions to enum Network, only returned by GetExtNetwork, |
| 1000 | // and only used in GetReachabilityFrom |
no test coverage detected