1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 19:35:06 +00:00
serenity/Userland/Services/WebSocket/WebSocketClient.ipc
Timothy 944e5cfb35 Everywhere: Use IPC include syntax
Remove superfluous includes from IPCCompiler's generated output and
add include directives in IPC definitions where appropriate.
2021-07-03 12:16:00 +02:00

13 lines
368 B
Text

#include <AK/URL.h>
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) =|
// Certificate requests
certificate_requested(i32 connection_id) =|
}