1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-13 21:41:00 +00:00
serenity/Userland/Services/RequestServer/RequestClient.ipc
Gunnar Beutner 9e22e9ce88 Userland: Use snake case names in .ipc files
This updates all .ipc files to have snake case names for IPC methods.
2021-05-03 21:14:40 +02:00

9 lines
370 B
Text

endpoint RequestClient
{
request_progress(i32 request_id, Optional<u32> total_size, u32 downloaded_size) =|
request_finished(i32 request_id, bool success, u32 total_size) =|
headers_became_available(i32 request_id, IPC::Dictionary response_headers, Optional<u32> status_code) =|
// Certificate requests
certificate_requested(i32 request_id) => ()
}