1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:57:35 +00:00

LookupServer: Rename "custom_hosts" => "etc_hosts"

This makes it more obvious that these mappings come from /etc/hosts.
This commit is contained in:
Andreas Kling 2020-01-26 14:54:08 +01:00
parent c26560ec26
commit 90a5907b44
2 changed files with 4 additions and 5 deletions

View file

@ -52,6 +52,6 @@ private:
RefPtr<CLocalServer> m_local_server;
String m_nameserver;
HashMap<String, String> m_dns_custom_hostnames;
HashMap<String, String> m_etc_hosts;
HashMap<String, CachedLookup> m_lookup_cache;
};