Revert "refactor: Update to Boost 1.88 and 1.86" (#5872)

This change reverts #5570, and then also makes the same changes as was done in #5759 to revert to Boost 1.83. We would like to expose Boost 1.88 to more in-depth testing, but with release 3.0.0 coming out soon there is insufficient time to do so, hence the reversion to Boost 1.83 (skipping Boost 1.86 as it has a bug in the executors).
This commit is contained in:
Bart
2025-10-10 11:32:13 -04:00
committed by GitHub
parent 5bac21c05b
commit 5e43e91d4a
80 changed files with 521 additions and 873 deletions

View File

@@ -47,7 +47,7 @@ public:
public:
AutoSocket(
boost::asio::io_context& s,
boost::asio::io_service& s,
boost::asio::ssl::context& c,
bool secureOnly,
bool plainOnly)
@@ -58,7 +58,7 @@ public:
mSocket = std::make_unique<ssl_socket>(s, c);
}
AutoSocket(boost::asio::io_context& s, boost::asio::ssl::context& c)
AutoSocket(boost::asio::io_service& s, boost::asio::ssl::context& c)
: AutoSocket(s, c, false, false)
{
}