Browse Source

delete unreachable SSU sessions

pull/93/head
orignal 10 years ago
parent
commit
de377b45b4
  1. 6
      SSU.cpp

6
SSU.cpp

@ -824,6 +824,7 @@ namespace ssu @@ -824,6 +824,7 @@ namespace ssu
// encrypt message with session key
FillHeaderAndEncrypt (PAYLOAD_TYPE_SESSION_DESTROYED, buf, 48);
Send (buf, 48);
LogPrint ("SSU session destoryed sent");
}
}
@ -1021,7 +1022,12 @@ namespace ssu @@ -1021,7 +1022,12 @@ namespace ssu
introducerSession->Introduce (introducer->iTag, introducer->iKey);
}
else
{
LogPrint ("Router is unreachable, but no introducers presented. Ignored");
m_Sessions.erase (remoteEndpoint);
delete session;
session = nullptr;
}
}
}
}

Loading…
Cancel
Save