Browse Source

try streaming race condition fix

pull/1076/head
Jeff Becker 7 years ago
parent
commit
f4a2dda94e
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
  1. 4
      libi2pd/Streaming.cpp

4
libi2pd/Streaming.cpp

@ -578,7 +578,9 @@ namespace stream
if (m_SentPackets.empty () && m_SendBuffer.IsEmpty ()) // nothing to send if (m_SentPackets.empty () && m_SendBuffer.IsEmpty ()) // nothing to send
{ {
m_Status = eStreamStatusClosed; m_Status = eStreamStatusClosed;
SendClose (); // close could be called from another thread so do SendClose from the destination thread
// this is so m_LocalDestination.NewPacket () does not trigger a race condition
m_Service.post(std::bind(&Stream::SendClose, shared_from_this()));
} }
break; break;
case eStreamStatusClosed: case eStreamStatusClosed:

Loading…
Cancel
Save