This commit is contained in:
Scott E. Graves 2024-12-28 19:36:25 -06:00
parent b4b688d3b9
commit 6086a0ea12

View File

@ -52,7 +52,7 @@ void packet_client::close(client &cli) {
cli.socket.shutdown(boost::asio::socket_base::shutdown_both); cli.socket.shutdown(boost::asio::socket_base::shutdown_both);
boost::system::error_code err; boost::system::error_code err;
cli.socket.close(err); [[maybe_unused]] auto res = cli.socket.close(err);
} catch (...) { } catch (...) {
} }
} }