| 494 | } |
| 495 | |
| 496 | enum Network CNetAddr::GetNetwork() const |
| 497 | { |
| 498 | if (IsInternal()) |
| 499 | return NET_INTERNAL; |
| 500 | |
| 501 | if (!IsRoutable()) |
| 502 | return NET_UNROUTABLE; |
| 503 | |
| 504 | return m_net; |
| 505 | } |
| 506 | |
| 507 | static std::string IPv4ToString(std::span<const uint8_t> a) |
| 508 | { |
no outgoing calls