mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 23:15:08 +00:00
9 lines
374 B
Text
9 lines
374 B
Text
endpoint ProtocolClient = 13
|
|
{
|
|
// Download notifications
|
|
DownloadProgress(i32 download_id, Optional<u32> total_size, u32 downloaded_size) =|
|
|
DownloadFinished(i32 download_id, bool success, Optional<u32> status_code, u32 total_size, i32 shbuf_id, IPC::Dictionary response_headers) =|
|
|
|
|
// Certificate requests
|
|
CertificateRequested(i32 download_id) => ()
|
|
}
|