Browse Source

check for duplicate msgID

pull/157/head
orignal 10 years ago
parent
commit
0dac2a74d3
  1. 11
      TunnelEndpoint.cpp

11
TunnelEndpoint.cpp

@ -114,9 +114,14 @@ namespace tunnel @@ -114,9 +114,14 @@ namespace tunnel
if (!isFollowOnFragment) // create new incomlete message
{
m.nextFragmentNum = 1;
auto& msg = m_IncompleteMessages[msgID];
msg = m;
HandleOutOfSequenceFragment (msgID, msg);
auto ret = m_IncompleteMessages.insert (std::pair<uint32_t, TunnelMessageBlockEx>(msgID, m));
if (ret.second)
HandleOutOfSequenceFragment (msgID, ret.first->second);
else
{
LogPrint (eLogError, "Incomplete message ", msgID, "already exists");
DeleteI2NPMessage (m.data);
}
}
else
{

Loading…
Cancel
Save