mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-21 16:49:10 +01:00
process retry as reponse to relay request
This commit is contained in:
parent
5e3115a614
commit
f5ed9129cd
1 changed files with 3 additions and 5 deletions
|
@ -409,11 +409,9 @@ namespace transport
|
||||||
auto it1 = m_PendingOutgoingSessions.find (senderEndpoint);
|
auto it1 = m_PendingOutgoingSessions.find (senderEndpoint);
|
||||||
if (it1 != m_PendingOutgoingSessions.end ())
|
if (it1 != m_PendingOutgoingSessions.end ())
|
||||||
{
|
{
|
||||||
if (it1->second->GetState () == eSSU2SessionStateSessionRequestSent)
|
if (it1->second->GetState () == eSSU2SessionStateSessionRequestSent &&
|
||||||
{
|
it1->second->ProcessSessionCreated (buf, len))
|
||||||
if (it1->second->ProcessSessionCreated (buf, len))
|
m_PendingOutgoingSessions.erase (it1); // we are done with that endpoint
|
||||||
m_PendingOutgoingSessions.erase (it1); // we are done with that endpoint
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
it1->second->ProcessRetry (buf, len);
|
it1->second->ProcessRetry (buf, len);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue