summaryrefslogtreecommitdiff
path: root/Userland/Services/WebSocket/WebSocketServer.ipc
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/WebSocket/WebSocketServer.ipc')
-rw-r--r--Userland/Services/WebSocket/WebSocketServer.ipc1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/WebSocket/WebSocketServer.ipc b/Userland/Services/WebSocket/WebSocketServer.ipc
index d0dfcf6b25..5b5bc7aa8b 100644
--- a/Userland/Services/WebSocket/WebSocketServer.ipc
+++ b/Userland/Services/WebSocket/WebSocketServer.ipc
@@ -5,6 +5,7 @@ endpoint WebSocketServer
// Connection API
connect(URL url, DeprecatedString origin, Vector<DeprecatedString> protocols, Vector<DeprecatedString> extensions, IPC::Dictionary additional_request_headers) => (i32 connection_id)
ready_state(i32 connection_id) => (u32 ready_state)
+ subprotocol_in_use(i32 connection_id) => (DeprecatedString subprotocol_in_use)
send(i32 connection_id, bool is_text, ByteBuffer data) =|
close(i32 connection_id, u16 code, DeprecatedString reason) =|