1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:37:36 +00:00

LookupServer: Move into LookupServer namespace

This commit is contained in:
Sergey Bugaev 2021-02-04 19:07:45 +03:00 committed by Andreas Kling
parent 7e9122950e
commit 314f966745
10 changed files with 37 additions and 1 deletions

View file

@ -29,6 +29,8 @@
#include <AK/Endian.h>
#include <AK/Types.h>
namespace LookupServer {
class [[gnu::packed]] DNSPacket {
public:
DNSPacket()
@ -113,3 +115,5 @@ private:
};
static_assert(sizeof(DNSPacket) == 12);
}