mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 01:22:43 +02: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.
19 lines
250 B
C++
19 lines
250 B
C++
/*
|
|
* Copyright (c) 2025, Tim Flynn <trflynn89@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace RequestServer {
|
|
|
|
class ConnectionFromClient;
|
|
class Request;
|
|
class RequestPipe;
|
|
|
|
struct DNSInfo;
|
|
struct Resolver;
|
|
|
|
}
|