1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 11:18:13 +00:00

RequestServer: Make the certificate_requested IPC call asynchronous

It was already being used asynchronously inside RequestServer anyway.
This commit is contained in:
Andreas Kling 2021-05-10 12:37:27 +02:00
parent 79ccba908e
commit 29fe4a5de5

View file

@ -5,5 +5,5 @@ endpoint RequestClient
headers_became_available(i32 request_id, IPC::Dictionary response_headers, Optional<u32> status_code) =|
// Certificate requests
certificate_requested(i32 request_id) => ()
certificate_requested(i32 request_id) =|
}