1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-08 22:57:52 +00:00

check accepted socket for error

This commit is contained in:
orignal 2015-02-06 13:49:00 -05:00
parent 6beb527058
commit 8e75d8c39a

View File

@ -792,9 +792,16 @@ namespace transport
{ {
if (!error) if (!error)
{ {
LogPrint (eLogInfo, "Connected from ", conn->GetSocket ().remote_endpoint()); boost::system::error_code ec;
auto ep = conn->GetSocket ().remote_endpoint(ec);
if (!ec)
{
LogPrint (eLogInfo, "Connected from ", ep);
conn->ServerLogin (); conn->ServerLogin ();
} }
else
LogPrint (eLogError, "Connected from error ", ec.message ());
}
if (error != boost::asio::error::operation_aborted) if (error != boost::asio::error::operation_aborted)
@ -809,9 +816,16 @@ namespace transport
{ {
if (!error) if (!error)
{ {
LogPrint (eLogInfo, "Connected from ", conn->GetSocket ().remote_endpoint()); boost::system::error_code ec;
auto ep = conn->GetSocket ().remote_endpoint(ec);
if (!ec)
{
LogPrint (eLogInfo, "Connected from ", ep);
conn->ServerLogin (); conn->ServerLogin ();
} }
else
LogPrint (eLogError, "Connected from error ", ec.message ());
}
if (error != boost::asio::error::operation_aborted) if (error != boost::asio::error::operation_aborted)
{ {