mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
post I2NP messages to NTCP2 thread
This commit is contained in:
@@ -748,9 +748,16 @@ namespace transport
|
||||
|
||||
void NTCP2Session::SendI2NPMessages (const std::vector<std::shared_ptr<I2NPMessage> >& msgs)
|
||||
{
|
||||
m_Server.GetService ().post (std::bind (&NTCP2Session::PostI2NPMessages, shared_from_this (), msgs));
|
||||
}
|
||||
|
||||
void NTCP2Session::PostI2NPMessages (std::vector<std::shared_ptr<I2NPMessage> > msgs)
|
||||
{
|
||||
if (m_IsTerminated) return;
|
||||
for (auto it: msgs)
|
||||
m_SendQueue.push_back (it);
|
||||
if (!m_IsSending) SendQueue ();
|
||||
if (!m_IsSending)
|
||||
SendQueue ();
|
||||
}
|
||||
|
||||
NTCP2Server::NTCP2Server ():
|
||||
|
||||
Reference in New Issue
Block a user