mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-22 09:00:30 +01:00
check profile for high bandwidth peer selection only
This commit is contained in:
parent
76c54ffdef
commit
4d27399ce3
1 changed files with 4 additions and 3 deletions
|
@ -895,7 +895,9 @@ namespace data
|
||||||
[compatibleWith](std::shared_ptr<const RouterInfo> router)->bool
|
[compatibleWith](std::shared_ptr<const RouterInfo> router)->bool
|
||||||
{
|
{
|
||||||
return !router->IsHidden () && router != compatibleWith &&
|
return !router->IsHidden () && router != compatibleWith &&
|
||||||
router->IsCompatible (*compatibleWith) && (router->GetCaps () & RouterInfo::eHighBandwidth);
|
router->IsCompatible (*compatibleWith) &&
|
||||||
|
(router->GetCaps () & RouterInfo::eHighBandwidth) &&
|
||||||
|
!router->GetProfile ()->IsBad ();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -912,8 +914,7 @@ namespace data
|
||||||
{
|
{
|
||||||
if (i >= ind)
|
if (i >= ind)
|
||||||
{
|
{
|
||||||
if (!it.second->IsUnreachable () && filter (it.second) &&
|
if (!it.second->IsUnreachable () && filter (it.second))
|
||||||
(j || !it.second->GetProfile ()->IsBad ()))
|
|
||||||
return it.second;
|
return it.second;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue