Merge pull request #1463 from sipa/fix_1455

Use a 64-bit nonce in ping
This commit is contained in:
Gregory Maxwell 2012-06-14 09:48:10 -07:00
commit 194ea3186a
1 changed files with 2 additions and 1 deletions

View File

@ -3013,8 +3013,9 @@ bool SendMessages(CNode* pto, bool fSendTrickle)
// Keep-alive ping. We send a nonce of zero because we don't use it anywhere
// right now.
if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) {
uint64 nonce = 0;
if (pto->nVersion > BIP0031_VERSION)
pto->PushMessage("ping", 0);
pto->PushMessage("ping", nonce);
else
pto->PushMessage("ping");
}