From d1ae603b936eed3d72edbe37ed02c653d40bf733 Mon Sep 17 00:00:00 2001 From: orignal Date: Thu, 4 Sep 2014 19:46:35 -0400 Subject: [PATCH] fixed incorrect PeerTest --- SSU.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SSU.cpp b/SSU.cpp index 178c5b6c..8a44ac0a 100644 --- a/SSU.cpp +++ b/SSU.cpp @@ -827,7 +827,7 @@ namespace ssu uint32_t nonce = i2p::context.GetRandomNumberGenerator ().GenerateWord32 (); if (!nonce) nonce = 1; m_PeerTestNonces.insert (nonce); - SendPeerTest (nonce, 0, 0, address->key, true); // address and port always zero for Alice + SendPeerTest (nonce, 0, 0, address->key, false); // address and port always zero for Alice }