Browse Source

make sure all outstading data got sent before closing socket

pull/739/head
orignal 8 years ago
parent
commit
c45f72a63e
  1. 11
      I2PTunnel.cpp
  2. 4
      Streaming.h

11
I2PTunnel.cpp

@ -92,8 +92,15 @@ namespace client @@ -92,8 +92,15 @@ namespace client
m_Stream->Close ();
m_Stream.reset ();
}
m_Socket->close ();
Done(shared_from_this ());
auto s = shared_from_this ();
// make sure all outstading jobs finished before close
m_Socket->get_io_service ().post(
[s]()
{
s->m_Socket->close ();
});
Done(s);
}
void I2PTunnelConnection::Receive ()

4
Streaming.h

@ -285,7 +285,7 @@ namespace stream @@ -285,7 +285,7 @@ namespace stream
auto s = shared_from_this();
m_Service.post ([=](void)
{
if (!m_ReceiveQueue.empty () || m_Status == eStreamStatusReset || m_Status == eStreamStatusClosed)
if (!m_ReceiveQueue.empty () || m_Status == eStreamStatusReset)
s->HandleReceiveTimer (boost::asio::error::make_error_code (boost::asio::error::operation_aborted), buffer, handler, 0);
else
{
@ -306,7 +306,7 @@ namespace stream @@ -306,7 +306,7 @@ namespace stream
else if (ecode == boost::asio::error::operation_aborted)
{
// timeout not expired
if (m_Status == eStreamStatusReset || m_Status == eStreamStatusClosed)
if (m_Status == eStreamStatusReset)
handler (boost::asio::error::make_error_code (boost::asio::error::connection_reset), 0);
else
handler (boost::asio::error::make_error_code (boost::asio::error::operation_aborted), 0);

Loading…
Cancel
Save