summaryrefslogtreecommitdiff
path: root/Userland/Services/WebSocket/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/WebSocket/main.cpp')
-rw-r--r--Userland/Services/WebSocket/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Services/WebSocket/main.cpp b/Userland/Services/WebSocket/main.cpp
index 60cc4ce3af..054bb7e681 100644
--- a/Userland/Services/WebSocket/main.cpp
+++ b/Userland/Services/WebSocket/main.cpp
@@ -10,7 +10,7 @@
#include <LibIPC/SingleServer.h>
#include <LibMain/Main.h>
#include <LibTLS/Certificate.h>
-#include <WebSocket/ClientConnection.h>
+#include <WebSocket/ConnectionFromClient.h>
ErrorOr<int> serenity_main(Main::Arguments)
{
@@ -25,7 +25,7 @@ ErrorOr<int> serenity_main(Main::Arguments)
TRY(Core::System::unveil("/etc/timezone", "r"));
TRY(Core::System::unveil(nullptr, nullptr));
- auto client = TRY(IPC::take_over_accepted_client_from_system_server<WebSocket::ClientConnection>());
+ auto client = TRY(IPC::take_over_accepted_client_from_system_server<WebSocket::ConnectionFromClient>());
return event_loop.exec();
}