diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2015-03-05 04:01:22 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2015-03-17 03:08:52 -0700 |
commit | 9c2737901b5203f267d21d728019d64b46f1d9f3 (patch) | |
tree | 7340edff0fd0ab4d74f284701faf691bf5e1fcbb /src/addrman.cpp | |
parent | d734d87b28ccbf2a4a4eb19a28285b5dea782105 (diff) |
Reduce fingerprinting through timestamps in 'addr' messages.
Suggested by Jonas Nick.
Diffstat (limited to 'src/addrman.cpp')
-rw-r--r-- | src/addrman.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/addrman.cpp b/src/addrman.cpp index 1e08ae772e..4b7e4d51b9 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -272,8 +272,9 @@ void CAddrMan::Good_(const CService& addr, int64_t nTime) // update info info.nLastSuccess = nTime; info.nLastTry = nTime; - info.nTime = nTime; info.nAttempts = 0; + // nTime is not updated here, to avoid leaking information about + // currently-connected peers. // if it is already in the tried set, don't do anything else if (info.fInTried) |