handle incoming connection failure

This commit is contained in:
orignal 2015-02-22 17:04:42 -05:00
parent 5b5c06179c
commit 621bfde961

View File

@ -680,9 +680,16 @@ namespace client
{ {
if (!ecode) if (!ecode)
{ {
LogPrint ("New SAM connection from ", socket->GetSocket ().remote_endpoint ()); boost::system::error_code ec;
auto ep = socket->GetSocket ().remote_endpoint (ec);
if (!ec)
{
LogPrint ("New SAM connection from ", ep);
socket->ReceiveHandshake (); socket->ReceiveHandshake ();
} }
else
LogPrint (eLogError, "SAM connection from error ", ec.message ());
}
else else
LogPrint ("SAM accept error: ", ecode.message ()); LogPrint ("SAM accept error: ", ecode.message ());