| 704 | } |
| 705 | |
| 706 | enum Network CNetAddr::GetNetwork() const { |
| 707 | if (!IsRoutable()) return NET_UNROUTABLE; |
| 708 | |
| 709 | if (IsIPv4()) return NET_IPV4; |
| 710 | |
| 711 | if (IsTor()) return NET_TOR; |
| 712 | |
| 713 | return NET_IPV6; |
| 714 | } |
| 715 | |
| 716 | string CNetAddr::ToStringIP() const { |
| 717 | if (IsTor()) |
no outgoing calls