| 1046 | } |
| 1047 | |
| 1048 | bool RouterInfo::IsSSU2PeerTesting (bool v4) const |
| 1049 | { |
| 1050 | if (!(m_SupportedTransports & (v4 ? eSSU2V4 : eSSU2V6))) return false; |
| 1051 | auto addr = (*GetAddresses ())[v4 ? eSSU2V4Idx : eSSU2V6Idx]; |
| 1052 | return addr && addr->IsPeerTesting () && addr->IsReachableSSU (); |
| 1053 | } |
| 1054 | |
| 1055 | bool RouterInfo::IsSSU2Introducer (bool v4) const |
| 1056 | { |
no test coverage detected