aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2016-08-25 23:42:40 +0000
committerGregory Maxwell <greg@xiph.org>2016-08-25 23:48:59 +0000
commiteb3596f7c220685fe6203178d5535c6775a789df (patch)
tree39cdd177e50b7b69273171c69120a8d4568889d2 /src
parent53f8f226bd1d627c4a6dec5862a1d4ea5a933e45 (diff)
downloadbitcoin-eb3596f7c220685fe6203178d5535c6775a789df.tar.xz
Do not add random inbound peers to addrman.
We should learn about new peers via address messages. An inbound peer connecting to us tells us nothing about its ability to accept incoming connections from us, so we shouldn't assume that we can connect to it based on this. The vast majority of nodes on the network do not accept incoming connections, adding them will only slow down the process of making a successful connection in the future. Nodes which have configured themselves to not announce would prefer we not violate their privacy by announcing them in GETADDR responses.
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 5160e60750..ddd0541101 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -5029,12 +5029,6 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
pfrom->fGetAddr = true;
}
addrman.Good(pfrom->addr);
- } else {
- if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom)
- {
- addrman.Add(addrFrom, addrFrom);
- addrman.Good(addrFrom);
- }
}
pfrom->fSuccessfullyConnected = true;