mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
36 lines
809 B
C++
36 lines
809 B
C++
/*
|
|
* 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&);
|
|
|
|
}
|