| 850 | } |
| 851 | |
| 852 | enum Network CNetAddr::GetNetwork() const |
| 853 | { |
| 854 | if (!IsRoutable()) |
| 855 | return NET_UNROUTABLE; |
| 856 | |
| 857 | if (IsIPv4()) |
| 858 | return NET_IPV4; |
| 859 | |
| 860 | if (IsTor()) |
| 861 | return NET_TOR; |
| 862 | |
| 863 | return NET_IPV6; |
| 864 | } |
| 865 | |
| 866 | std::string CNetAddr::ToStringIP() const |
| 867 | { |
no outgoing calls