mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-22 15:32:24 +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())
|
if (self && self->proxy_.is_open())
|
||||||
{
|
{
|
||||||
self->proxy_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
boost::system::error_code ec;
|
||||||
self->proxy_.close();
|
self->proxy_.shutdown(boost::asio::ip::tcp::socket::shutdown_both, ec);
|
||||||
|
self->proxy_.close(ec);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue