From: Gavin Andresen Date: Fri, 2 Sep 2011 15:01:45 +0000 (-0400) Subject: Give hard-coded seed nodes a random last-seen time, to randomize order they're tried. X-Git-Tag: v0.4.0-unstable~227^2~31 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=86fd7c5af6cf3f907c50cf25ff844cd23e271c70 Give hard-coded seed nodes a random last-seen time, to randomize order they're tried. --- diff --git a/src/net.cpp b/src/net.cpp index 1655cfb..952102e 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1357,9 +1357,12 @@ void ThreadOpenConnections2(void* parg) { // It'll only connect to one or two seed nodes because once it connects, // it'll get a pile of addresses with newer timestamps. + // Seed nodes are given a random 'last seen time' of between one and two + // weeks ago. + const int64 nOneWeek = 7*24*60*60; CAddress addr; addr.ip = pnSeed[i]; - addr.nTime = 0; + addr.nTime = GetTime()-GetRand(nOneWeek)-nOneWeek; AddAddress(addr); } fSeedUsed = true;