chore: Use boost::asio::ssl::stream instead of boost::beast::ssl_stream (#2814)

This commit is contained in:
Ayaz Salikhov
2025-11-26 12:27:48 +00:00
committed by GitHub
parent 73e90b0a3f
commit 946976546a
6 changed files with 11 additions and 11 deletions

View File

@@ -148,7 +148,7 @@ HttpsSyncClient::syncPost(std::string const& host, std::string const& port, std:
ctx.set_verify_mode(ssl::verify_none);
tcp::resolver resolver(ioc);
boost::beast::ssl_stream<boost::beast::tcp_stream> stream(ioc, ctx);
boost::asio::ssl::stream<boost::beast::tcp_stream> stream(ioc, ctx);
// We can't fix this so have to ignore
#pragma GCC diagnostic push