| 703 | // and only used in GetReachabilityFrom |
| 704 | static const int NET_TEREDO = NET_MAX; |
| 705 | int static GetExtNetwork(const CNetAddr& addr) |
| 706 | { |
| 707 | if (addr.IsRFC4380()) |
| 708 | return NET_TEREDO; |
| 709 | return addr.GetNetwork(); |
| 710 | } |
| 711 | |
| 712 | /** Calculates a metric for how reachable (*this) is from a given partner */ |
| 713 | int CNetAddr::GetReachabilityFrom(const CNetAddr& paddrPartner) const |
no test coverage detected