style: More clang-tidy identifier renaming (#7290)

This commit is contained in:
Alex Kremer
2026-05-20 22:31:15 +01:00
committed by GitHub
parent 8c0080020f
commit a830ab10ef
160 changed files with 1726 additions and 1746 deletions

View File

@@ -62,7 +62,7 @@ private:
using endpoint_type = boost::asio::ip::tcp::endpoint;
using address_type = boost::asio::ip::address;
io_context_type io_context_;
io_context_type ioContext_;
boost::optional<boost::asio::executor_work_guard<boost::asio::io_context::executor_type>> work_;
std::thread thread_;
std::shared_ptr<boost::asio::ssl::context> context_;
@@ -185,10 +185,10 @@ private:
, server(server)
, test(server.test_)
, acceptor(
test.io_context_,
test.ioContext_,
endpoint_type(boost::asio::ip::make_address(test::getEnvLocalhostAddr()), 0))
, socket(test.io_context_)
, strand(boost::asio::make_strand(test.io_context_))
, socket(test.ioContext_)
, strand(boost::asio::make_strand(test.ioContext_))
{
acceptor.listen();
server.endpoint_ = acceptor.local_endpoint();
@@ -261,8 +261,8 @@ private:
, test(server.test_)
, socket(std::move(inSocket))
, stream(socket, *test.context_)
, strand(boost::asio::make_strand(test.io_context_))
, timer(test.io_context_)
, strand(boost::asio::make_strand(test.ioContext_))
, timer(test.ioContext_)
{
}
@@ -450,10 +450,10 @@ private:
: Child(client)
, client(client)
, test(client.test_)
, socket(test.io_context_)
, socket(test.ioContext_)
, stream(socket, *test.context_)
, strand(boost::asio::make_strand(test.io_context_))
, timer(test.io_context_)
, strand(boost::asio::make_strand(test.ioContext_))
, timer(test.ioContext_)
, ep(ep)
{
}
@@ -632,10 +632,10 @@ private:
public:
short_read_test()
: work_(io_context_.get_executor())
: work_(ioContext_.get_executor())
, thread_(std::thread([this]() {
beast::setCurrentThreadName("io_context");
this->io_context_.run();
this->ioContext_.run();
}))
, context_(makeSslContext(""))
{