fixed send keepalive for existing session

This commit is contained in:
orignal 2023-07-23 07:17:10 -04:00
parent 4aa631c33f
commit 2064504cce

View file

@ -1002,12 +1002,11 @@ namespace transport
else else
{ {
if (ts < session->GetCreationTime () + SSU2_TO_INTRODUCER_SESSION_EXPIRATION) if (ts < session->GetCreationTime () + SSU2_TO_INTRODUCER_SESSION_EXPIRATION)
{
impliedList.push_back (it); // keep in introducers list, but not publish impliedList.push_back (it); // keep in introducers list, but not publish
session->SendKeepAlive (); else
}
session = nullptr; session = nullptr;
} }
if (session) session->SendKeepAlive ();
} }
if (!session) if (!session)
i2p::context.RemoveSSU2Introducer (it, v4); i2p::context.RemoveSSU2Introducer (it, v4);