mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
22 lines
475 B
C++
22 lines
475 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <RequestServer/Protocol.h>
|
|
|
|
namespace RequestServer {
|
|
|
|
class GeminiProtocol final : public Protocol {
|
|
public:
|
|
GeminiProtocol();
|
|
virtual ~GeminiProtocol() override = default;
|
|
|
|
virtual OwnPtr<Request> start_request(ConnectionFromClient&, String const& method, const URL&, HashMap<String, String> const&, ReadonlyBytes body) override;
|
|
};
|
|
|
|
}
|