1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:07:35 +00:00

LibWeb: Implement 'Default User-Agent value' AO

This commit is contained in:
Linus Groh 2022-10-24 09:23:18 +01:00
parent 5ee9feb9cf
commit 6deb5ce9b5
3 changed files with 10 additions and 1 deletions

View file

@ -74,5 +74,6 @@ struct RangeHeaderValue {
[[nodiscard]] bool is_forbidden_response_header_name(ReadonlyBytes);
[[nodiscard]] bool is_request_body_header_name(ReadonlyBytes);
[[nodiscard]] Optional<RangeHeaderValue> parse_single_range_header_value(ReadonlyBytes);
[[nodiscard]] ErrorOr<ByteBuffer> default_user_agent_value();
}