Browse Source

minimal version for floodfill 0.9.28

pull/1583/head
orignal 4 years ago
parent
commit
9301e39af7
  1. 1
      libi2pd/NetDb.hpp
  2. 7
      libi2pd/RouterInfo.cpp
  3. 3
      libi2pd/RouterInfo.h

1
libi2pd/NetDb.hpp

@ -44,6 +44,7 @@ namespace data @@ -44,6 +44,7 @@ namespace data
const int NETDB_PUBLISH_CONFIRMATION_TIMEOUT = 5; // in seconds
const int NETDB_MAX_PUBLISH_EXCLUDED_FLOODFILLS = 15;
const int NETDB_MIN_HIGHBANDWIDTH_VERSION = MAKE_VERSION_NUMBER(0, 9, 36); // 0.9.36
const int NETDB_MIN_FLOODFILL_VERSION = MAKE_VERSION_NUMBER(0, 9, 28); // 0.9.28
/** function for visiting a leaseset stored in a floodfill */
typedef std::function<void(const IdentHash, std::shared_ptr<LeaseSet>)> LeaseSetVisitor;

7
libi2pd/RouterInfo.cpp

@ -948,5 +948,12 @@ namespace data @@ -948,5 +948,12 @@ namespace data
if (encryptor)
encryptor->Encrypt (data, encrypted, ctx, true);
}
bool RouterInfo::IsEligibleFloodfill () const
{
// floodfill must be reachable, >= 0.9.28 and not DSA
return IsReachable () && m_Version >= NETDB_MIN_FLOODFILL_VERSION &&
GetIdentity ()->GetSigningKeyType () != SIGNING_KEY_TYPE_DSA_SHA1;
}
}
}

3
libi2pd/RouterInfo.h

@ -184,8 +184,7 @@ namespace data @@ -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);

Loading…
Cancel
Save