summaryrefslogtreecommitdiff
path: root/Servers/ProtocolServer
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-12-02 09:52:07 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-12-02 11:11:05 +0100
commit5d4ee0f58ae974a3c34a246a52a1cbab1dce1e88 (patch)
tree9707f8c91a1c9012490b47230f3026a3341945a5 /Servers/ProtocolServer
parent272d65e3e2ed32981114d89df26d9154e51fb47e (diff)
downloadserenity-5d4ee0f58ae974a3c34a246a52a1cbab1dce1e88.zip
LibIPC: Move IPC client/server connection templates to LibIPC
Move over the CoreIPC::Server and CoreIPC::Client namespace stuff into LibIPC where it will soon becomes LibIPC-style things.
Diffstat (limited to 'Servers/ProtocolServer')
-rw-r--r--Servers/ProtocolServer/PSClientConnection.h2
-rw-r--r--Servers/ProtocolServer/main.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Servers/ProtocolServer/PSClientConnection.h b/Servers/ProtocolServer/PSClientConnection.h
index fd6b71f195..cce3ccb2c4 100644
--- a/Servers/ProtocolServer/PSClientConnection.h
+++ b/Servers/ProtocolServer/PSClientConnection.h
@@ -1,7 +1,7 @@
#pragma once
#include <AK/Badge.h>
-#include <LibCore/CoreIPCServer.h>
+#include <LibIPC/IClientConnection.h>
#include <ProtocolServer/ProtocolServerEndpoint.h>
class Download;
diff --git a/Servers/ProtocolServer/main.cpp b/Servers/ProtocolServer/main.cpp
index 8937aa1578..33df6a085a 100644
--- a/Servers/ProtocolServer/main.cpp
+++ b/Servers/ProtocolServer/main.cpp
@@ -1,6 +1,6 @@
#include <LibCore/CEventLoop.h>
#include <LibCore/CLocalServer.h>
-#include <LibCore/CoreIPCServer.h>
+#include <LibIPC/IClientConnection.h>
#include <ProtocolServer/HttpProtocol.h>
#include <ProtocolServer/PSClientConnection.h>