mirror of
https://github.com/matrix-construct/construct
synced 2024-11-27 01:02:46 +01:00
ircd::client: Minor rename.
This commit is contained in:
parent
635cccdb9d
commit
9d06af1dbe
1 changed files with 3 additions and 3 deletions
|
@ -335,7 +335,7 @@ namespace ircd
|
||||||
static bool handle_ec_eof(client &);
|
static bool handle_ec_eof(client &);
|
||||||
static bool handle_ec(client &, const error_code &);
|
static bool handle_ec(client &, const error_code &);
|
||||||
|
|
||||||
static void handle_client_request(std::shared_ptr<client>);
|
static void handle_client_requests(std::shared_ptr<client>);
|
||||||
static void handle_client_ready(std::shared_ptr<client>, const error_code &ec);
|
static void handle_client_ready(std::shared_ptr<client>, const error_code &ec);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -400,7 +400,7 @@ ircd::handle_client_ready(std::shared_ptr<client> client,
|
||||||
|
|
||||||
auto handler
|
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)
|
if(client::pool.avail() == 0)
|
||||||
|
@ -419,7 +419,7 @@ ircd::handle_client_ready(std::shared_ptr<client> client,
|
||||||
/// client will release this ctx and its stack and fall back to async mode
|
/// client will release this ctx and its stack and fall back to async mode
|
||||||
/// or die.
|
/// or die.
|
||||||
void
|
void
|
||||||
ircd::handle_client_request(std::shared_ptr<client> client)
|
ircd::handle_client_requests(std::shared_ptr<client> client)
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// The ircd::ctx now handling this request is referenced and accessible
|
// The ircd::ctx now handling this request is referenced and accessible
|
||||||
|
|
Loading…
Reference in a new issue