Browse Source

teminate non-connected NTCP session

pull/157/head
orignal 10 years ago
parent
commit
6beb527058
  1. 2
      NTCPSession.cpp

2
NTCPSession.cpp

@ -838,11 +838,9 @@ namespace transport
{ {
LogPrint (eLogError, "Connect error: ", ecode.message ()); LogPrint (eLogError, "Connect error: ", ecode.message ());
if (ecode != boost::asio::error::operation_aborted) if (ecode != boost::asio::error::operation_aborted)
{
i2p::data::netdb.SetUnreachable (conn->GetRemoteIdentity ().GetIdentHash (), true); i2p::data::netdb.SetUnreachable (conn->GetRemoteIdentity ().GetIdentHash (), true);
conn->Terminate (); conn->Terminate ();
} }
}
else else
{ {
LogPrint (eLogInfo, "Connected to ", conn->GetSocket ().remote_endpoint ()); LogPrint (eLogInfo, "Connected to ", conn->GetSocket ().remote_endpoint ());

Loading…
Cancel
Save