mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:54:58 +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.
33 lines
869 B
C++
33 lines
869 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Badge.h>
|
|
#include <AK/NonnullOwnPtr.h>
|
|
#include <LibCore/Forward.h>
|
|
#include <LibHTTP/Forward.h>
|
|
#include <RequestServer/Request.h>
|
|
|
|
namespace RequestServer {
|
|
|
|
class HttpRequest final : public Request {
|
|
public:
|
|
virtual ~HttpRequest() override;
|
|
static NonnullOwnPtr<HttpRequest> create_with_job(Badge<HttpProtocol>&&, ConnectionFromClient&, NonnullRefPtr<HTTP::Job>, NonnullOwnPtr<Core::File>&&, i32);
|
|
|
|
HTTP::Job& job() { return m_job; }
|
|
HTTP::Job const& job() const { return m_job; }
|
|
|
|
virtual URL url() const override { return m_job->url(); }
|
|
|
|
private:
|
|
explicit HttpRequest(ConnectionFromClient&, NonnullRefPtr<HTTP::Job>, NonnullOwnPtr<Core::File>&&, i32);
|
|
|
|
NonnullRefPtr<HTTP::Job> m_job;
|
|
};
|
|
|
|
}
|