Browse Source

check LeaseSet expiration time

pull/2125/head
orignal 3 days ago
parent
commit
a05bb93792
  1. 5
      libi2pd/LeaseSet.cpp

5
libi2pd/LeaseSet.cpp

@ -425,6 +425,11 @@ namespace data @@ -425,6 +425,11 @@ namespace data
if (offset + 1 > len) return 0;
int numLeases = buf[offset]; offset++;
auto ts = i2p::util::GetMillisecondsSinceEpoch ();
if (GetExpirationTime () > ts + i2p::tunnel::TUNNEL_EXPIRATION_TIMEOUT*1000LL)
{
LogPrint (eLogWarning, "LeaseSet2: Expiration time is too long ", GetExpirationTime ()/1000LL);
SetExpirationTime (ts + i2p::tunnel::TUNNEL_EXPIRATION_TIMEOUT*1000LL);
}
if (IsStoreLeases ())
{
UpdateLeasesBegin ();

Loading…
Cancel
Save