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

LibCore: Port CoreIPCServer to using CLocalServer.

Use CLocalServer to listen for connections in WindowServer and AudioServer.
This allows us to accept incoming CLocalSocket objects from the CLocalServer
and construct client connections based on those.

Removed COpenedSocket since it's replaced by CLocalSocket.
This commit is contained in:
Andreas Kling 2019-07-27 10:53:50 +02:00
parent c289e49ee5
commit fe45f5a6d2
9 changed files with 40 additions and 93 deletions

View file

@ -1,7 +1,7 @@
#pragma once
#include <LibCore/CEventLoop.h>
#include <LibCore/CLocalSocket.h>
#include <LibCore/CLocalServer.h>
#include <LibCore/CNotifier.h>
#include "ASMixer.h"
@ -12,9 +12,6 @@ public:
int exec() { return m_event_loop.exec(); }
private:
CEventLoop m_event_loop;
CLocalSocket m_server_sock;
OwnPtr<CNotifier> m_server_notifier;
CLocalServer m_server_sock;
ASMixer m_mixer;
void drain_server();
};