mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
eligble floodfill must be reachable by ipv4
This commit is contained in:
parent
5d022c25ba
commit
f4902e6642
2 changed files with 3 additions and 4 deletions
|
@ -206,7 +206,7 @@ namespace data
|
|||
void DisableMesh ();
|
||||
bool IsCompatible (const RouterInfo& other) const { return m_SupportedTransports & other.m_SupportedTransports; };
|
||||
bool IsReachableFrom (const RouterInfo& other) const { return m_ReachableTransports & other.m_SupportedTransports; };
|
||||
bool IsReachableBy (SupportedTransports transport) const { return m_ReachableTransports & transport; };
|
||||
bool IsReachableBy (uint8_t transports) const { return m_ReachableTransports & transports; };
|
||||
bool HasValidAddresses () const { return m_SupportedTransports; };
|
||||
bool IsHidden () const { return m_Caps & eHidden; };
|
||||
bool IsHighBandwidth () const { return m_Caps & RouterInfo::eHighBandwidth; };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue