| 1029 | } |
| 1030 | |
| 1031 | bool RouterInfo::IsPublished (bool v4) const |
| 1032 | { |
| 1033 | if (m_Caps & (eUnreachable | eHidden)) return false; // if router sets U or H we assume that all addresses are not published |
| 1034 | return IsPublishedOn (v4 ? (eNTCP2V4 | eSSU2V4) : (eNTCP2V6 | eSSU2V6)); |
| 1035 | } |
| 1036 | |
| 1037 | bool RouterInfo::IsPublishedOn (CompatibleTransports transports) const |
| 1038 | { |
no outgoing calls
no test coverage detected