blob: c3a14aa2e534d468fe35e258f8320a88b7024e4d (
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
|
/*
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
#include <LibCore/DateTime.h>
namespace Web::Cookie {
enum class Source {
NonHttp,
Http,
};
struct Cookie {
String name;
String value;
Core::DateTime creation_time {};
Core::DateTime last_access_time {};
Core::DateTime expiry_time {};
String domain {};
String path {};
bool secure { false };
bool http_only { false };
bool host_only { false };
bool persistent { false };
};
}
|