mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
check minimal router version for connected peer selection
This commit is contained in:
parent
32ab95478e
commit
0df895b6a7
2 changed files with 15 additions and 13 deletions
|
@ -79,12 +79,7 @@ namespace transport
|
|||
nextRouterInfoUpdateTime (ts + PEER_ROUTER_INFO_UPDATE_INTERVAL),
|
||||
isHighBandwidth (false), isEligible (false)
|
||||
{
|
||||
if (router)
|
||||
{
|
||||
isHighBandwidth = router->IsHighBandwidth ();
|
||||
isEligible = router->IsECIES () && (bool)router->GetCompatibleTransports (true) && // reachable
|
||||
router->GetCongestion () != i2p::data::RouterInfo::eRejectAll;
|
||||
}
|
||||
UpdateParams (router);
|
||||
}
|
||||
|
||||
void Done ()
|
||||
|
@ -99,15 +94,11 @@ namespace transport
|
|||
void SetRouter (std::shared_ptr<const i2p::data::RouterInfo> r)
|
||||
{
|
||||
router = r;
|
||||
if (router)
|
||||
{
|
||||
isHighBandwidth = router->IsHighBandwidth ();
|
||||
isEligible = router->IsECIES () && (bool)router->GetCompatibleTransports (true) && // reachable
|
||||
router->GetCongestion () != i2p::data::RouterInfo::eRejectAll;
|
||||
}
|
||||
UpdateParams (router);
|
||||
}
|
||||
|
||||
bool IsConnected () const { return !sessions.empty (); }
|
||||
bool IsConnected () const { return !sessions.empty (); }
|
||||
void UpdateParams (std::shared_ptr<const i2p::data::RouterInfo> router);
|
||||
};
|
||||
|
||||
const uint64_t SESSION_CREATION_TIMEOUT = 15; // in seconds
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue