diff options
author | Sonic <sonic@dexon.org> | 2018-11-28 16:35:40 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:58 +0800 |
commit | 8ffae7f0af18a69a049d73ee244bc543c1708309 (patch) | |
tree | e3e3428f9df6b0c2c4756483e934ed2fbf0ed456 | |
parent | a1aa74a83e7c775cd68b0e34481701a3e6221598 (diff) | |
download | dexon-8ffae7f0af18a69a049d73ee244bc543c1708309.tar dexon-8ffae7f0af18a69a049d73ee244bc543c1708309.tar.gz dexon-8ffae7f0af18a69a049d73ee244bc543c1708309.tar.bz2 dexon-8ffae7f0af18a69a049d73ee244bc543c1708309.tar.lz dexon-8ffae7f0af18a69a049d73ee244bc543c1708309.tar.xz dexon-8ffae7f0af18a69a049d73ee244bc543c1708309.tar.zst dexon-8ffae7f0af18a69a049d73ee244bc543c1708309.zip |
p2p/discover: increase IP address limits (#60)
-rw-r--r-- | p2p/discover/table.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/p2p/discover/table.go b/p2p/discover/table.go index e8a219871..1300fd01d 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 |