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).
32 lines
857 B
C++
32 lines
857 B
C++
/*
|
|
* Copyright (c) 2018-2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Badge.h>
|
|
#include <AK/ByteBuffer.h>
|
|
#include <AK/HashMap.h>
|
|
#include <AK/OwnPtr.h>
|
|
#include <AK/String.h>
|
|
#include <AK/URL.h>
|
|
#include <LibHTTP/HttpsJob.h>
|
|
#include <RequestServer/ClientConnection.h>
|
|
#include <RequestServer/HttpCommon.h>
|
|
#include <RequestServer/HttpsProtocol.h>
|
|
#include <RequestServer/HttpsRequest.h>
|
|
#include <RequestServer/Request.h>
|
|
|
|
namespace RequestServer {
|
|
|
|
HttpsProtocol::HttpsProtocol()
|
|
: Protocol("https")
|
|
{
|
|
}
|
|
|
|
OwnPtr<Request> HttpsProtocol::start_request(ClientConnection& client, const String& method, const URL& url, const HashMap<String, String>& headers, ReadonlyBytes body)
|
|
{
|
|
return Detail::start_request(Badge<HttpsProtocol> {}, client, method, url, headers, body, get_pipe_for_request());
|
|
}
|
|
|
|
}
|