summaryrefslogtreecommitdiff
path: root/Userland/Services/LookupServer/LookupServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/LookupServer/LookupServer.h')
-rw-r--r--Userland/Services/LookupServer/LookupServer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Services/LookupServer/LookupServer.h b/Userland/Services/LookupServer/LookupServer.h
index fb46add0c9..b126caffb4 100644
--- a/Userland/Services/LookupServer/LookupServer.h
+++ b/Userland/Services/LookupServer/LookupServer.h
@@ -52,8 +52,8 @@ private:
RefPtr<Core::LocalServer> m_local_server;
Vector<String> m_nameservers;
- HashMap<String, String> m_etc_hosts;
- HashMap<String, Vector<DNSAnswer>> m_lookup_cache;
+ HashMap<DNSName, String, DNSName::Traits> m_etc_hosts;
+ HashMap<DNSName, Vector<DNSAnswer>, DNSName::Traits> m_lookup_cache;
};
}