mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-06 18:32:57 +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) =|
|
|
}
|