mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
Some checks failed
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-15, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
Build Dev Container Image / build (push) Has been cancelled
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Vector.h>
|
|
#include <LibDNS/Resolver.h>
|
|
#include <LibHTTP/HeaderMap.h>
|
|
#include <LibURL/URL.h>
|
|
|
|
namespace WebSocket {
|
|
|
|
class ConnectionInfo final {
|
|
public:
|
|
ConnectionInfo(URL::URL);
|
|
|
|
URL::URL const& url() const { return m_url; }
|
|
|
|
ByteString const& origin() const { return m_origin; }
|
|
void set_origin(ByteString origin) { m_origin = move(origin); }
|
|
|
|
Vector<ByteString> const& protocols() const { return m_protocols; }
|
|
void set_protocols(Vector<ByteString> protocols) { m_protocols = move(protocols); }
|
|
|
|
Vector<ByteString> const& extensions() const { return m_extensions; }
|
|
void set_extensions(Vector<ByteString> extensions) { m_extensions = move(extensions); }
|
|
|
|
HTTP::HeaderMap const& headers() const { return m_headers; }
|
|
void set_headers(HTTP::HeaderMap headers) { m_headers = move(headers); }
|
|
|
|
Optional<ByteString> const& root_certificates_path() const { return m_root_certificates_path; }
|
|
void set_root_certificates_path(Optional<ByteString> root_certificates_path) { m_root_certificates_path = move(root_certificates_path); }
|
|
|
|
Optional<DNS::LookupResult const&> dns_result() const { return m_dns_result ? Optional<DNS::LookupResult const&>(*m_dns_result) : OptionalNone {}; }
|
|
void set_dns_result(NonnullRefPtr<DNS::LookupResult const> dns_result) { m_dns_result = move(dns_result); }
|
|
|
|
// secure flag - defined in RFC 6455 Section 3
|
|
bool is_secure() const;
|
|
|
|
// "resource-name" or "/resource name/" - defined in RFC 6455 Section 3
|
|
ByteString resource_name() const;
|
|
|
|
private:
|
|
URL::URL m_url;
|
|
ByteString m_origin;
|
|
Vector<ByteString> m_protocols {};
|
|
Vector<ByteString> m_extensions {};
|
|
HTTP::HeaderMap m_headers;
|
|
Optional<ByteString> m_root_certificates_path;
|
|
RefPtr<DNS::LookupResult const> m_dns_result;
|
|
};
|
|
|
|
}
|