mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 16:27:39 +00:00
socks: ignore any exceptions in shutdown/close
This commit is contained in:
parent
6b824c9ed0
commit
797ca974ab
1 changed files with 3 additions and 2 deletions
|
@ -321,8 +321,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);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue