close SSU session if not established
This commit is contained in:
4
SSU.cpp
4
SSU.cpp
@@ -83,7 +83,8 @@ namespace ssu
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ScheduleTermination ();
|
if (m_State == eSessionStateEstablished)
|
||||||
|
ScheduleTermination ();
|
||||||
/* // check for duplicate
|
/* // check for duplicate
|
||||||
const uint8_t * iv = ((SSUHeader *)buf)->iv;
|
const uint8_t * iv = ((SSUHeader *)buf)->iv;
|
||||||
if (m_ReceivedIVs.count (iv)) return; // duplicate detected
|
if (m_ReceivedIVs.count (iv)) return; // duplicate detected
|
||||||
@@ -652,7 +653,6 @@ namespace ssu
|
|||||||
if (m_State != eSessionStateFailed)
|
if (m_State != eSessionStateFailed)
|
||||||
{
|
{
|
||||||
m_State = eSessionStateFailed;
|
m_State = eSessionStateFailed;
|
||||||
Close ();
|
|
||||||
m_Server.DeleteSession (this); // delete this
|
m_Server.DeleteSession (this); // delete this
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user