mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
We currently have two ongoing implementations of RFC 9111, HTTP caching. In order to consolidate these, this patch moves the implementation from RequestServer to LibHTTP for re-use within LibWeb.
23 lines
331 B
C++
23 lines
331 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace HTTP {
|
|
|
|
class CacheEntry;
|
|
class CacheEntryReader;
|
|
class CacheEntryWriter;
|
|
class CacheIndex;
|
|
class CacheRequest;
|
|
class DiskCache;
|
|
class HeaderList;
|
|
class HttpRequest;
|
|
class HttpResponse;
|
|
|
|
struct Header;
|
|
|
|
}
|