summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibProtocol
diff options
context:
space:
mode:
authorLucas CHOLLET <lucas.chollet@free.fr>2022-07-24 13:16:18 +0200
committerLinus Groh <mail@linusgroh.de>2022-08-14 21:52:35 +0100
commite9e94ef3cc1836c88f263e272eaff5b693741a8f (patch)
tree675ec8c6de9071eaadb773506434fa427e7cb67a /Userland/Libraries/LibProtocol
parentac7b0e69e5ba9dd1e56a2fdee0d044b55289d220 (diff)
downloadserenity-e9e94ef3cc1836c88f263e272eaff5b693741a8f.zip
Base: Launch WebSocket at session start-up
Diffstat (limited to 'Userland/Libraries/LibProtocol')
-rw-r--r--Userland/Libraries/LibProtocol/WebSocketClient.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibProtocol/WebSocketClient.h b/Userland/Libraries/LibProtocol/WebSocketClient.h
index 6d6d479f13..9edc484d38 100644
--- a/Userland/Libraries/LibProtocol/WebSocketClient.h
+++ b/Userland/Libraries/LibProtocol/WebSocketClient.h
@@ -18,7 +18,7 @@ class WebSocket;
class WebSocketClient final
: public IPC::ConnectionToServer<WebSocketClientEndpoint, WebSocketServerEndpoint>
, public WebSocketClientEndpoint {
- IPC_CLIENT_CONNECTION(WebSocketClient, "/tmp/portal/websocket"sv)
+ IPC_CLIENT_CONNECTION(WebSocketClient, "/tmp/user/%uid/portal/websocket"sv)
public:
RefPtr<WebSocket> connect(const URL&, String const& origin = {}, Vector<String> const& protocols = {}, Vector<String> const& extensions = {}, HashMap<String, String> const& request_headers = {});