| 827 | } |
| 828 | |
| 829 | enum Network CNetAddr::GetNetwork() const |
| 830 | { |
| 831 | if (!IsRoutable()) |
| 832 | return NET_UNROUTABLE; |
| 833 | |
| 834 | if (IsIPv4()) |
| 835 | return NET_IPV4; |
| 836 | |
| 837 | if (IsTor()) |
| 838 | return NET_TOR; |
| 839 | |
| 840 | return NET_IPV6; |
| 841 | } |
| 842 | |
| 843 | std::string CNetAddr::ToStringIP() const |
| 844 | { |
no outgoing calls