mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
631faec32f
This adds a reason_phrase() getter and a static reason_phrase_for_code() to the HttpResponse class. It also changes the class to use east const style.
37 lines
1001 B
C++
37 lines
1001 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <AK/String.h>
|
|
#include <LibCore/NetworkResponse.h>
|
|
|
|
namespace HTTP {
|
|
|
|
class HttpResponse : public Core::NetworkResponse {
|
|
public:
|
|
virtual ~HttpResponse() override;
|
|
static NonnullRefPtr<HttpResponse> create(int code, HashMap<String, String, CaseInsensitiveStringTraits>&& headers)
|
|
{
|
|
return adopt_ref(*new HttpResponse(code, move(headers)));
|
|
}
|
|
|
|
int code() const { return m_code; }
|
|
StringView reason_phrase() const { return reason_phrase_for_code(m_code); }
|
|
HashMap<String, String, CaseInsensitiveStringTraits> const& headers() const { return m_headers; }
|
|
|
|
static StringView reason_phrase_for_code(int code);
|
|
|
|
private:
|
|
HttpResponse(int code, HashMap<String, String, CaseInsensitiveStringTraits>&&);
|
|
|
|
int m_code { 0 };
|
|
HashMap<String, String, CaseInsensitiveStringTraits> m_headers;
|
|
};
|
|
|
|
}
|