/* * Copyright (c) 2018-2020, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include #include #include namespace RequestServer { class HttpsProtocol final : public Protocol { public: using JobType = HTTP::HttpsJob; using RequestType = HttpsRequest; ~HttpsProtocol() override = default; static void install(); private: HttpsProtocol(); virtual OwnPtr start_request(i32, ConnectionFromClient&, ByteString const& method, const URL&, HashMap const& headers, ReadonlyBytes body, Core::ProxyData proxy_data = {}) override; }; }