avoid exception if not connected

This commit is contained in:
orignal 2016-12-31 10:50:48 -05:00
parent d77c782f69
commit f4de68cb22

View File

@ -92,7 +92,8 @@ namespace client
m_Stream->Close ();
m_Stream.reset ();
}
m_Socket->shutdown(boost::asio::ip::tcp::socket::shutdown_send); // avoid RST
boost::system::error_code ec;
m_Socket->shutdown(boost::asio::ip::tcp::socket::shutdown_send, ec); // avoid RST
m_Socket->close ();
Done(shared_from_this ());