mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 19:35:06 +00:00

Remove superfluous includes from IPCCompiler's generated output and add include directives in IPC definitions where appropriate.
13 lines
368 B
Text
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) =|
|
|
}
|