diff --git a/ircd/client.cc b/ircd/client.cc index 8d3693878..2096d3c7d 100644 --- a/ircd/client.cc +++ b/ircd/client.cc @@ -335,7 +335,7 @@ namespace ircd static bool handle_ec_eof(client &); static bool handle_ec(client &, const error_code &); - static void handle_client_request(std::shared_ptr); + static void handle_client_requests(std::shared_ptr); static void handle_client_ready(std::shared_ptr, const error_code &ec); } @@ -400,7 +400,7 @@ ircd::handle_client_ready(std::shared_ptr client, auto handler { - std::bind(ircd::handle_client_request, std::move(client)) + std::bind(ircd::handle_client_requests, std::move(client)) }; if(client::pool.avail() == 0) @@ -419,7 +419,7 @@ ircd::handle_client_ready(std::shared_ptr client, /// client will release this ctx and its stack and fall back to async mode /// or die. void -ircd::handle_client_request(std::shared_ptr client) +ircd::handle_client_requests(std::shared_ptr client) try { // The ircd::ctx now handling this request is referenced and accessible