mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
post I2NP messages to NTCP2 thread
This commit is contained in:
parent
5001592fb4
commit
5bedfc1c84
2 changed files with 9 additions and 1 deletions
|
@ -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 ():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue