blob: 3a71812b77dbb10203ce4a2475bb76bd1232b5b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Optional.h>
#include <AK/String.h>
#include <LibCore/DateTime.h>
#include <LibIPC/Forward.h>
namespace Web::Cookie {
struct ParsedCookie {
String name;
String value;
Optional<Core::DateTime> expiry_time_from_expires_attribute {};
Optional<Core::DateTime> expiry_time_from_max_age_attribute {};
Optional<String> domain {};
Optional<String> path {};
bool secure_attribute_present { false };
bool http_only_attribute_present { false };
};
Optional<ParsedCookie> parse_cookie(const String& cookie_string);
}
namespace IPC {
bool encode(IPC::Encoder&, const Web::Cookie::ParsedCookie&);
bool decode(IPC::Decoder&, Web::Cookie::ParsedCookie&);
}
|