mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:22:43 +00:00 
			
		
		
		
	 8464da1439
			
		
	
	
		8464da1439
		
	
	
	
	
		
			
			`Stream` will be qualified as `AK::Stream` until we remove the `Core::Stream` namespace. `IODevice` now reuses the `SeekMode` that is defined by `SeekableStream`, since defining its own would require us to qualify it with `AK::SeekMode` everywhere.
		
			
				
	
	
		
			49 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
	
		
			1.2 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/DeprecatedString.h>
 | |
| #include <AK/Forward.h>
 | |
| #include <LibCore/Stream.h>
 | |
| 
 | |
| namespace DNS {
 | |
| 
 | |
| class Name {
 | |
| public:
 | |
|     Name() = default;
 | |
|     Name(DeprecatedString const&);
 | |
| 
 | |
|     static Name parse(u8 const* data, size_t& offset, size_t max_offset, size_t recursion_level = 0);
 | |
| 
 | |
|     size_t serialized_size() const;
 | |
|     DeprecatedString const& as_string() const { return m_name; }
 | |
|     ErrorOr<void> write_to_stream(AK::Stream&) const;
 | |
| 
 | |
|     void randomize_case();
 | |
| 
 | |
|     bool operator==(Name const& other) const { return Traits::equals(*this, other); }
 | |
| 
 | |
|     class Traits : public AK::Traits<Name> {
 | |
|     public:
 | |
|         static unsigned hash(Name const& name);
 | |
|         static bool equals(Name const&, Name const&);
 | |
|     };
 | |
| 
 | |
| private:
 | |
|     DeprecatedString m_name;
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| template<>
 | |
| struct AK::Formatter<DNS::Name> : Formatter<StringView> {
 | |
|     ErrorOr<void> format(FormatBuilder& builder, DNS::Name const& value)
 | |
|     {
 | |
|         return Formatter<StringView>::format(builder, value.as_string());
 | |
|     }
 | |
| };
 |