2025-10-29 13:39:08 -03:00
|
|
|
/*
|
2025-12-24 13:08:14 -03:00
|
|
|
* Copyright (c) 2025-2026, Tim Flynn <trflynn89@ladybird.org>
|
2025-10-29 13:39:08 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
|
2025-11-28 12:04:59 -03:00
|
|
|
namespace HTTP {
|
2025-10-29 13:39:08 -03:00
|
|
|
|
|
|
|
|
// Increment this version when a breaking change is made to the cache index or cache entry formats.
|
2026-05-03 14:09:18 -03:00
|
|
|
static constexpr inline u32 CACHE_VERSION = 7u;
|
2025-10-29 13:39:08 -03:00
|
|
|
|
|
|
|
|
}
|