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

This makes it so the clients don't have to wait for RS to become responsive, potentially allowing them to do other things while RS handles the connections. Fixes #23306.
34 lines
939 B
C++
34 lines
939 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 <LibHTTP/HttpsJob.h>
|
|
#include <RequestServer/Request.h>
|
|
|
|
namespace RequestServer {
|
|
|
|
class HttpsRequest final : public Request {
|
|
public:
|
|
virtual ~HttpsRequest() override;
|
|
static NonnullOwnPtr<HttpsRequest> create_with_job(Badge<HttpsProtocol>&&, ConnectionFromClient&, NonnullRefPtr<HTTP::HttpsJob>, NonnullOwnPtr<Core::File>&&, i32);
|
|
|
|
HTTP::HttpsJob& job() { return m_job; }
|
|
HTTP::HttpsJob const& job() const { return m_job; }
|
|
|
|
virtual URL url() const override { return m_job->url(); }
|
|
|
|
private:
|
|
explicit HttpsRequest(ConnectionFromClient&, NonnullRefPtr<HTTP::HttpsJob>, NonnullOwnPtr<Core::File>&&, i32);
|
|
|
|
virtual void set_certificate(ByteString certificate, ByteString key) override;
|
|
|
|
NonnullRefPtr<HTTP::HttpsJob> m_job;
|
|
};
|
|
|
|
}
|