| 522 | } |
| 523 | |
| 524 | enum Network CNetAddr::GetNetwork() const |
| 525 | { |
| 526 | if (IsInternal()) |
| 527 | return NET_INTERNAL; |
| 528 | |
| 529 | if (!IsRoutable()) |
| 530 | return NET_UNROUTABLE; |
| 531 | |
| 532 | return m_net; |
| 533 | } |
| 534 | |
| 535 | static std::string IPv4ToString(Span<const uint8_t> a) |
| 536 | { |
no outgoing calls