diff options
author | Patrick Strateman <patrick.strateman@gmail.com> | 2015-08-21 18:42:05 -0700 |
---|---|---|
committer | Patrick Strateman <patrick.strateman@gmail.com> | 2015-08-22 15:38:24 -0700 |
commit | 17f3533c8484f02732fff5cf004d251c0df50eb8 (patch) | |
tree | 880b188bf54056f929bbd1066dde6bbff91015c5 | |
parent | 1317cd1928afbae14fedb39c8d23589a32fe2951 (diff) |
Better support for nodes with non-standard nMaxConnections
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 709c652430..4d08f63e32 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -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; |