minimal version for floodfill 0.9.28

This commit is contained in:
orignal 2020-11-23 12:49:18 -05:00
parent 86e3b977e4
commit 9301e39af7
3 changed files with 9 additions and 2 deletions

View file

@ -184,8 +184,7 @@ namespace data
bool IsHidden () const { return m_Caps & eHidden; };
bool IsHighBandwidth () const { return m_Caps & RouterInfo::eHighBandwidth; };
bool IsExtraBandwidth () const { return m_Caps & RouterInfo::eExtraBandwidth; };
// floodfill must be reachable and not DSA
bool IsEligibleFloodfill () const { return IsReachable () && GetIdentity ()->GetSigningKeyType () != SIGNING_KEY_TYPE_DSA_SHA1; };
bool IsEligibleFloodfill () const;
uint8_t GetCaps () const { return m_Caps; };
void SetCaps (uint8_t caps);