1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:17:44 +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

@ -30,6 +30,8 @@
#include "DNSResponse.h"
#include <LibCore/Object.h>
namespace LookupServer {
class DNSAnswer;
class LookupServer final : public Core::Object {
@ -53,3 +55,5 @@ private:
HashMap<String, String> m_etc_hosts;
HashMap<String, CachedLookup> m_lookup_cache;
};
}