mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 04:04: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).
38 lines
1 KiB
C++
38 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibHTTP/HttpsJob.h>
|
|
#include <RequestServer/HttpCommon.h>
|
|
#include <RequestServer/HttpsProtocol.h>
|
|
#include <RequestServer/HttpsRequest.h>
|
|
|
|
namespace RequestServer {
|
|
|
|
HttpsRequest::HttpsRequest(ClientConnection& client, NonnullRefPtr<HTTP::HttpsJob> job, NonnullOwnPtr<OutputFileStream>&& output_stream)
|
|
: Request(client, move(output_stream))
|
|
, m_job(job)
|
|
{
|
|
Detail::init(this, job);
|
|
}
|
|
|
|
void HttpsRequest::set_certificate(String certificate, String key)
|
|
{
|
|
m_job->set_certificate(move(certificate), move(key));
|
|
}
|
|
|
|
HttpsRequest::~HttpsRequest()
|
|
{
|
|
m_job->on_finish = nullptr;
|
|
m_job->on_progress = nullptr;
|
|
m_job->shutdown();
|
|
}
|
|
|
|
NonnullOwnPtr<HttpsRequest> HttpsRequest::create_with_job(Badge<HttpsProtocol>&&, ClientConnection& client, NonnullRefPtr<HTTP::HttpsJob> job, NonnullOwnPtr<OutputFileStream>&& output_stream)
|
|
{
|
|
return adopt_own(*new HttpsRequest(client, move(job), move(output_stream)));
|
|
}
|
|
|
|
}
|