summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibIPC/SingleServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibIPC/SingleServer.h')
-rw-r--r--Userland/Libraries/LibIPC/SingleServer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Libraries/LibIPC/SingleServer.h b/Userland/Libraries/LibIPC/SingleServer.h
index 3a7da1a8fc..c6613f112c 100644
--- a/Userland/Libraries/LibIPC/SingleServer.h
+++ b/Userland/Libraries/LibIPC/SingleServer.h
@@ -8,15 +8,15 @@
#include <LibCore/System.h>
#include <LibCore/SystemServerTakeover.h>
-#include <LibIPC/ClientConnection.h>
+#include <LibIPC/ConnectionFromClient.h>
namespace IPC {
-template<typename ClientConnectionType>
-ErrorOr<NonnullRefPtr<ClientConnectionType>> take_over_accepted_client_from_system_server()
+template<typename ConnectionFromClientType>
+ErrorOr<NonnullRefPtr<ConnectionFromClientType>> take_over_accepted_client_from_system_server()
{
auto socket = TRY(Core::take_over_socket_from_system_server());
- return IPC::new_client_connection<ClientConnectionType>(move(socket));
+ return IPC::new_client_connection<ConnectionFromClientType>(move(socket));
}
}