1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 23:15:08 +00:00
serenity/Services/ProtocolServer/ProtocolClient.ipc
AnotherTest 97256ad977 ProtocolServer+LibTLS: Pipe certificate requests from LibTLS to clients
This makes gemini.circumlunar.space (and some more gemini pages) work
again :^)
2020-08-02 18:57:51 +02:00

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) => ()
}