From 29ceed74a209376e4a88dbbec27b86fe1f27352e Mon Sep 17 00:00:00 2001 From: orignal Date: Thu, 30 Mar 2017 11:59:39 -0400 Subject: [PATCH] don't drop destination's acceptor if inactive acceptor gets closed --- SAM.cpp | 9 +++++++-- SAM.h | 1 + 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/SAM.cpp b/SAM.cpp index 79645934..b54d5086 100644 --- a/SAM.cpp +++ b/SAM.cpp @@ -18,7 +18,7 @@ namespace client SAMSocket::SAMSocket (SAMBridge& owner): m_Owner (owner), m_Socket (m_Owner.GetService ()), m_Timer (m_Owner.GetService ()), m_BufferOffset (0), m_SocketType (eSAMSocketTypeUnknown), m_IsSilent (false), - m_Stream (nullptr), m_Session (nullptr) + m_IsAccepting (false), m_Stream (nullptr), m_Session (nullptr) { } @@ -56,7 +56,7 @@ namespace client if (m_Session) { m_Session->DelSocket (shared_from_this ()); - if (m_Session->localDestination) + if (m_IsAccepting && m_Session->localDestination) m_Session->localDestination->StopAcceptingStreams (); } break; @@ -438,7 +438,10 @@ namespace client m_SocketType = eSAMSocketTypeAcceptor; m_Session->AddSocket (shared_from_this ()); if (!m_Session->localDestination->IsAcceptingStreams ()) + { + m_IsAccepting = true; m_Session->localDestination->AcceptOnce (std::bind (&SAMSocket::HandleI2PAccept, shared_from_this (), std::placeholders::_1)); + } SendMessageReply (SAM_STREAM_STATUS_OK, strlen(SAM_STREAM_STATUS_OK), false); } else @@ -701,6 +704,7 @@ namespace client { LogPrint (eLogDebug, "SAM: incoming I2P connection for session ", m_ID); m_SocketType = eSAMSocketTypeStream; + m_IsAccepting = false; m_Stream = stream; context.GetAddressBook ().InsertAddress (stream->GetRemoteIdentity ()); auto session = m_Owner.FindSession (m_ID); @@ -710,6 +714,7 @@ namespace client for (auto it: session->ListSockets ()) if (it->m_SocketType == eSAMSocketTypeAcceptor) { + it->m_IsAccepting = true; session->localDestination->AcceptOnce (std::bind (&SAMSocket::HandleI2PAccept, it, std::placeholders::_1)); break; } diff --git a/SAM.h b/SAM.h index ec02475a..5cbdc9ac 100644 --- a/SAM.h +++ b/SAM.h @@ -131,6 +131,7 @@ namespace client SAMSocketType m_SocketType; std::string m_ID; // nickname bool m_IsSilent; + bool m_IsAccepting; // for eSAMSocketTypeAcceptor only std::shared_ptr m_Stream; std::shared_ptr m_Session; };