socks: ignore any exceptions in shutdown/close

This commit is contained in:
selsta 2021-10-05 19:42:25 +02:00
parent 2243318000
commit 423b6553a1
No known key found for this signature in database
GPG Key ID: 2EA0A99A8B07AE5E

View File

@ -322,8 +322,9 @@ namespace socks
{
if (self && self->proxy_.is_open())
{
self->proxy_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
self->proxy_.close();
boost::system::error_code ec;
self->proxy_.shutdown(boost::asio::ip::tcp::socket::shutdown_both, ec);
self->proxy_.close(ec);
}
});
}