diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-03-22 14:27:14 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:50:05 +0800 |
commit | c0fff2fcc2e6085a4a85a72d6220eb8220d5a66f (patch) | |
tree | decc6bd76220e6691ecc738214851c75719f0d31 | |
parent | 08c88f6ccdffa22c1750afc55a0f0d8f2a188208 (diff) | |
download | dexon-c0fff2fcc2e6085a4a85a72d6220eb8220d5a66f.tar dexon-c0fff2fcc2e6085a4a85a72d6220eb8220d5a66f.tar.gz dexon-c0fff2fcc2e6085a4a85a72d6220eb8220d5a66f.tar.bz2 dexon-c0fff2fcc2e6085a4a85a72d6220eb8220d5a66f.tar.lz dexon-c0fff2fcc2e6085a4a85a72d6220eb8220d5a66f.tar.xz dexon-c0fff2fcc2e6085a4a85a72d6220eb8220d5a66f.tar.zst dexon-c0fff2fcc2e6085a4a85a72d6220eb8220d5a66f.zip |
Revert "p2p/discover: increase IP address limits (#60)"
This reverts commit 3ca44e556bd9561b0c6c64c7d3a4f95726c78be8.
-rw-r--r-- | p2p/discover/table.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/p2p/discover/table.go b/p2p/discover/table.go index 1300fd01d..e8a219871 100644 --- a/p2p/discover/table.go +++ b/p2p/discover/table.go @@ -52,9 +52,8 @@ const ( bucketMinDistance = hashBits - nBuckets // Log distance of closest bucket // IP address limits. - // TODO(sonic): revert this change - bucketIPLimit, bucketSubnet = 8, 24 // at most 2 addresses from the same /24 - tableIPLimit, tableSubnet = 16, 24 + bucketIPLimit, bucketSubnet = 2, 24 // at most 2 addresses from the same /24 + tableIPLimit, tableSubnet = 10, 24 maxFindnodeFailures = 5 // Nodes exceeding this limit are dropped refreshInterval = 30 * time.Minute |