1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:17:46 +00:00

LookupServer: Move DNS name serialization to DNSName class

This commit is contained in:
Sergey Bugaev 2021-02-14 15:16:20 +03:00 committed by Andreas Kling
parent 42bc5f2cc1
commit d6f7ced4f1
3 changed files with 17 additions and 12 deletions

View file

@ -27,6 +27,7 @@
#pragma once
#include <AK/Forward.h>
#include <AK/String.h>
namespace LookupServer {
@ -43,4 +44,6 @@ private:
String m_name;
};
OutputStream& operator<<(OutputStream& stream, const DNSName&);
}