Browse Source

queue up out of sequence packets

pull/371/head^2
orignal 9 years ago
parent
commit
e2e101e4fb
  1. 2
      Streaming.cpp

2
Streaming.cpp

@ -885,7 +885,7 @@ namespace stream @@ -885,7 +885,7 @@ namespace stream
auto s = shared_from_this ();
timer->async_wait ([s,timer,receiveStreamID](const boost::system::error_code& ecode)
{
if (ecode == boost::asio::error::operation_aborted)
if (ecode != boost::asio::error::operation_aborted)
{
auto it = s->m_SavedPackets.find (receiveStreamID);
if (it != s->m_SavedPackets.end ())

Loading…
Cancel
Save