mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:37:34 +00:00
Userland: Use snake case names in .ipc files
This updates all .ipc files to have snake case names for IPC methods.
This commit is contained in:
parent
eb21aa65d1
commit
9e22e9ce88
36 changed files with 296 additions and 287 deletions
|
@ -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) =|
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue