mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 04:04:58 +00:00
11 lines
347 B
Text
11 lines
347 B
Text
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) =|
|
|
}
|