pull/719/head
Jeff Becker 5 years ago
parent 59653119fa
commit d465400840
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -57,6 +57,7 @@ namespace llarp
{
SharedSecret shared;
ProtocolFrame f;
f.C.Zero();
f.N.Randomize();
f.T = currentConvoTag;
f.S = ++sequenceNo;

@ -195,7 +195,7 @@ namespace llarp
return now - lastActive > 5000;
if(state == eSessionReady)
{
if(now <= lastSend || lastSend == 0)
if(now <= lastSend)
return false;
return now - lastSend > 30000;
}

Loading…
Cancel
Save