diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 13:16:18 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | e9e94ef3cc1836c88f263e272eaff5b693741a8f (patch) | |
tree | 675ec8c6de9071eaadb773506434fa427e7cb67a /Userland/Libraries/LibProtocol | |
parent | ac7b0e69e5ba9dd1e56a2fdee0d044b55289d220 (diff) | |
download | serenity-e9e94ef3cc1836c88f263e272eaff5b693741a8f.zip |
Base: Launch WebSocket at session start-up
Diffstat (limited to 'Userland/Libraries/LibProtocol')
-rw-r--r-- | Userland/Libraries/LibProtocol/WebSocketClient.h | 2 |
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 = {}); |