Better support for nodes with non-standard nMaxConnections
This commit is contained in:
parent
1317cd1928
commit
17f3533c84
1 changed files with 1 additions and 1 deletions
|
@ -862,7 +862,7 @@ static bool AttemptToEvictConnection(bool fPreferNewConnection) {
|
|||
// Protect the 64 nodes which have been connected the longest.
|
||||
// This replicates the existing implicit behavior.
|
||||
std::sort(vEvictionCandidates.begin(), vEvictionCandidates.end(), ReverseCompareNodeTimeConnected);
|
||||
vEvictionCandidates.erase(vEvictionCandidates.end() - std::min(64, static_cast<int>(vEvictionCandidates.size())), vEvictionCandidates.end());
|
||||
vEvictionCandidates.erase(vEvictionCandidates.end() - std::min(static_cast<int>(vEvictionCandidates.size() / 2), static_cast<int>(vEvictionCandidates.size())), vEvictionCandidates.end());
|
||||
|
||||
if (vEvictionCandidates.empty())
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue