mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
close client socket if I2P gets closed
This commit is contained in:
parent
dda80703d2
commit
fbe6c22884
@ -30,6 +30,7 @@ namespace stream
|
||||
|
||||
void I2PTunnelConnection::Terminate ()
|
||||
{
|
||||
m_Socket->close ();
|
||||
// TODO: remove from I2PTunnel
|
||||
}
|
||||
|
||||
@ -58,7 +59,14 @@ namespace stream
|
||||
|
||||
void I2PTunnelConnection::HandleWrite (const boost::system::error_code& ecode)
|
||||
{
|
||||
StreamReceive ();
|
||||
if (ecode)
|
||||
{
|
||||
LogPrint ("I2PTunnel write error: ", ecode.message ());
|
||||
m_Stream->Close ();
|
||||
Terminate ();
|
||||
}
|
||||
else
|
||||
StreamReceive ();
|
||||
}
|
||||
|
||||
void I2PTunnelConnection::StreamReceive ()
|
||||
|
Loading…
Reference in New Issue
Block a user