mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 21:37:17 +01:00
handle out-of-sequence fragment for first fragment
This commit is contained in:
parent
1b70061169
commit
888a19fdba
|
@ -121,8 +121,9 @@ namespace tunnel
|
|||
if (!isFollowOnFragment) // create new incomlete message
|
||||
{
|
||||
m.nextFragmentNum = 1;
|
||||
HandleOutOfSequenceFragment (msgID, m);
|
||||
m_IncompleteMessages[msgID] = m;
|
||||
auto& msg = m_IncompleteMessages[msgID];
|
||||
msg = m;
|
||||
HandleOutOfSequenceFragment (msgID, msg);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue