mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:12:45 +00:00 
			
		
		
		
	 1682f0b760
			
		
	
	
		1682f0b760
		
	
	
	
	
		
			
			SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			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();
 | |
| 
 | |
|     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());
 | |
|     }
 | |
| };
 |