2025-10-29 13:39:08 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2025, Tim Flynn <trflynn89@ladybird.org>
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
2025-11-20 17:12:05 -03:00
|
|
|
static constexpr inline u32 CACHE_VERSION = 4u;
|
2025-10-29 13:39:08 -03:00
|
|
|
|
|
|
|
|
}
|