mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-04-23 21:14:31 +00:00
LibIPC: Rename base classes to IClientConnection and IServerConnection
This matches what we're already calling the server-side subclasses better, though we'll probably want to find some better names for the client-side classes eventually.
This commit is contained in:
@@ -42,7 +42,7 @@ WSClientConnection* WSClientConnection::from_client_id(int client_id)
|
||||
}
|
||||
|
||||
WSClientConnection::WSClientConnection(CLocalSocket& client_socket, int client_id)
|
||||
: ConnectionNG(*this, client_socket, client_id)
|
||||
: IClientConnection(*this, client_socket, client_id)
|
||||
{
|
||||
if (!s_connections)
|
||||
s_connections = new HashMap<int, NonnullRefPtr<WSClientConnection>>;
|
||||
|
||||
Reference in New Issue
Block a user