summaryrefslogtreecommitdiff
path: root/Userland/Services/WebSocket/WebSocketClient.ipc
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-05-03 15:52:56 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-03 21:14:40 +0200
commit9e22e9ce88d180367394614078c36e336358b24b (patch)
tree8b76cef533de8e4c438c33d65c860202880e4f1d /Userland/Services/WebSocket/WebSocketClient.ipc
parenteb21aa65d131f6fb382ad80d672e5a7ffb1a21e1 (diff)
downloadserenity-9e22e9ce88d180367394614078c36e336358b24b.zip
Userland: Use snake case names in .ipc files
This updates all .ipc files to have snake case names for IPC methods.
Diffstat (limited to 'Userland/Services/WebSocket/WebSocketClient.ipc')
-rw-r--r--Userland/Services/WebSocket/WebSocketClient.ipc10
1 files changed, 5 insertions, 5 deletions
diff --git a/Userland/Services/WebSocket/WebSocketClient.ipc b/Userland/Services/WebSocket/WebSocketClient.ipc
index edcd43b1a1..ef8da18780 100644
--- a/Userland/Services/WebSocket/WebSocketClient.ipc
+++ b/Userland/Services/WebSocket/WebSocketClient.ipc
@@ -1,11 +1,11 @@
endpoint WebSocketClient
{
// Connection API
- Connected(i32 connection_id) =|
- Received(i32 connection_id, bool is_text, ByteBuffer data) =|
- Errored(i32 connection_id, i32 message) =|
- Closed(i32 connection_id, u16 code, String reason, bool clean) =|
+ connected(i32 connection_id) =|
+ received(i32 connection_id, bool is_text, ByteBuffer data) =|
+ errored(i32 connection_id, i32 message) =|
+ closed(i32 connection_id, u16 code, String reason, bool clean) =|
// Certificate requests
- CertificateRequested(i32 connection_id) =|
+ certificate_requested(i32 connection_id) =|
}