mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
This hasn't been maintained (or worked at all) for a long time, and it's not a widely supported protocol, so let's drop it.
20 lines
295 B
C++
20 lines
295 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace RequestServer {
|
|
|
|
class ConnectionFromClient;
|
|
class Request;
|
|
class HttpRequest;
|
|
class HttpProtocol;
|
|
class HttpsRequest;
|
|
class HttpsProtocol;
|
|
class Protocol;
|
|
|
|
}
|