mirror of
https://github.com/RGBCube/serenity
synced 2025-06-22 17:52:07 +00:00

We already have and use HashMap<DeprecatedString, DeprecatedString> nearly everywhere, which is equivalent.
11 lines
443 B
Text
11 lines
443 B
Text
#include <AK/URL.h>
|
|
|
|
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, HashMap<DeprecatedString,DeprecatedString,CaseInsensitiveStringTraits> response_headers, Optional<u32> status_code) =|
|
|
|
|
// Certificate requests
|
|
certificate_requested(i32 request_id) =|
|
|
}
|