mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 06:14:58 +00:00

We had some inconsistencies before: - Sometimes "The", sometimes "the" - Sometimes trailing ".", sometimes no trailing "." I picked the most common one (lowecase "the", trailing ".") and applied it to all copyright headers. By using the exact same string everywhere we can ensure nothing gets missed during a global search (and replace), and that these inconsistencies are not spread any further (as copyright headers are commonly copied to new files).
29 lines
774 B
C++
29 lines
774 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Badge.h>
|
|
#include <LibCore/Forward.h>
|
|
#include <LibGemini/Forward.h>
|
|
#include <RequestServer/Request.h>
|
|
|
|
namespace RequestServer {
|
|
|
|
class GeminiRequest final : public Request {
|
|
public:
|
|
virtual ~GeminiRequest() override;
|
|
static NonnullOwnPtr<GeminiRequest> create_with_job(Badge<GeminiProtocol>, ClientConnection&, NonnullRefPtr<Gemini::GeminiJob>, NonnullOwnPtr<OutputFileStream>&&);
|
|
|
|
private:
|
|
explicit GeminiRequest(ClientConnection&, NonnullRefPtr<Gemini::GeminiJob>, NonnullOwnPtr<OutputFileStream>&&);
|
|
|
|
virtual void set_certificate(String certificate, String key) override;
|
|
|
|
NonnullRefPtr<Gemini::GeminiJob> m_job;
|
|
};
|
|
|
|
}
|