aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorPatrick Strateman <patrick.strateman@gmail.com>2015-08-21 18:42:05 -0700
committerPatrick Strateman <patrick.strateman@gmail.com>2015-08-22 15:38:24 -0700
commit17f3533c8484f02732fff5cf004d251c0df50eb8 (patch)
tree880b188bf54056f929bbd1066dde6bbff91015c5 /src/net.cpp
parent1317cd1928afbae14fedb39c8d23589a32fe2951 (diff)
downloadbitcoin-17f3533c8484f02732fff5cf004d251c0df50eb8.tar.xz
Better support for nodes with non-standard nMaxConnections
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
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;