Merge remote-tracking branch 'purple/openssl' into websocks

This commit is contained in:
Jeff Becker 2016-12-31 17:08:49 -05:00
commit c5f8e2249e
4 changed files with 9 additions and 50 deletions

View file

@ -106,7 +106,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 ());