mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-13 04:46:38 +01:00
send FIN in streaming thread
This commit is contained in:
parent
15b4dfbecb
commit
1ea26a113a
1 changed files with 5 additions and 3 deletions
|
@ -255,7 +255,8 @@ namespace stream
|
|||
if (m_IsOpen)
|
||||
{
|
||||
m_IsOpen = false;
|
||||
uint8_t packet[MAX_PACKET_SIZE];
|
||||
Packet * p = new Packet ();
|
||||
uint8_t * packet = p->GetBuffer ();
|
||||
size_t size = 0;
|
||||
*(uint32_t *)(packet + size) = htobe32 (m_SendStreamID);
|
||||
size += 4; // sendStreamID
|
||||
|
@ -277,7 +278,8 @@ namespace stream
|
|||
size += 40; // signature
|
||||
m_LocalDestination->Sign (packet, size, signature);
|
||||
|
||||
if (SendPacket (packet, size))
|
||||
p->len = size;
|
||||
m_Service.post (boost::bind (&Stream::SendPacket, this, p));
|
||||
LogPrint ("FIN sent");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue