1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:07:43 +00:00

Rename new IPC headers & classes

Sticking these in a namespace allows us to use a more generic
("Connection") term without clashing, which is way easier to understand
than to try to come up with unique names for both.
This commit is contained in:
Robin Burchell 2019-07-17 19:46:06 +02:00 committed by Andreas Kling
parent 2177594c96
commit 9c8dd836fc
12 changed files with 71 additions and 59 deletions

View file

@ -62,8 +62,7 @@ void WSEventLoop::drain_server()
} else {
static int s_next_client_id = 0;
int client_id = ++s_next_client_id;
CIPCServerSideClientCreator<WSClientConnection>(client_fd, client_id);
IPC::Server::new_connection_for_client<WSClientConnection>(client_fd, client_id);
}
}