From 8985d37a2e90c99bf7a1e9afd1ef87f67745b51c Mon Sep 17 00:00:00 2001 From: Sonic Date: Wed, 28 Nov 2018 16:35:40 +0800 Subject: p2p/discover: increase IP address limits (#60) --- p2p/discover/table.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'p2p') diff --git a/p2p/discover/table.go b/p2p/discover/table.go index 2b4640211..f0f099d64 100644 --- a/p2p/discover/table.go +++ b/p2p/discover/table.go @@ -52,8 +52,9 @@ const ( bucketMinDistance = hashBits - nBuckets // Log distance of closest bucket // IP address limits. - bucketIPLimit, bucketSubnet = 2, 24 // at most 2 addresses from the same /24 - tableIPLimit, tableSubnet = 10, 24 + // TODO(sonic): revert this change + bucketIPLimit, bucketSubnet = 8, 24 // at most 2 addresses from the same /24 + tableIPLimit, tableSubnet = 16, 24 maxFindnodeFailures = 5 // Nodes exceeding this limit are dropped refreshInterval = 30 * time.Minute -- cgit v1.2.3