mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 10:24:59 +00:00
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2021, Sergey Bugaev <bugaevc@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Forward.h>
|
|
#include <AK/String.h>
|
|
|
|
namespace LookupServer {
|
|
|
|
class DNSName {
|
|
public:
|
|
DNSName(const String&);
|
|
|
|
static DNSName parse(const u8* data, size_t& offset, size_t max_offset, size_t recursion_level = 0);
|
|
|
|
size_t serialized_size() const;
|
|
const String& as_string() const { return m_name; }
|
|
|
|
void randomize_case();
|
|
|
|
bool operator==(const DNSName&) const;
|
|
|
|
class Traits : public AK::Traits<DNSName> {
|
|
public:
|
|
static unsigned hash(const DNSName& name);
|
|
static bool equals(const DNSName&, const DNSName&);
|
|
};
|
|
|
|
private:
|
|
String m_name;
|
|
};
|
|
|
|
OutputStream& operator<<(OutputStream& stream, const DNSName&);
|
|
|
|
}
|
|
|
|
template<>
|
|
struct AK::Formatter<LookupServer::DNSName> : Formatter<StringView> {
|
|
void format(FormatBuilder& builder, const LookupServer::DNSName& value)
|
|
{
|
|
return Formatter<StringView>::format(builder, value.as_string());
|
|
}
|
|
};
|