From: Pieter Wuille Date: Sun, 25 Mar 2012 14:06:16 +0000 (+0200) Subject: Give DNS seeds a random age between 3 and 7 days old X-Git-Tag: v0.4.0-unstable~129^2~134^2 X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=bf1afb02cab1a08052f46845e437f2de9d29f55a;hp=4a17e3e6b947d6ede40e49f77244d880240240cd;p=novacoin.git Give DNS seeds a random age between 3 and 7 days old This speeds up initial connections with an old/large addr.dat a lot. --- diff --git a/src/net.cpp b/src/net.cpp index e9ec233..37e73c4 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1093,8 +1093,9 @@ void ThreadDNSAddressSeed2(void* parg) { BOOST_FOREACH(CNetAddr& ip, vaddr) { + int nOneDay = 24*3600; CAddress addr = CAddress(CService(ip, GetDefaultPort())); - addr.nTime = 0; + addr.nTime = GetTime() - 3*nOneDay - GetRand(4*nOneDay); // use a random age between 3 and 7 days old vAdd.push_back(addr); found++; }