LookupServer: Move into LookupServer namespace

This commit is contained in:
Sergey Bugaev 2021-02-04 19:07:45 +03:00 committed by Andreas Kling
commit 314f966745
Notes: sideshowbarker 2024-07-18 22:34:20 +09:00
10 changed files with 37 additions and 1 deletions

View file

@ -41,6 +41,8 @@
#include <sys/time.h>
#include <unistd.h>
namespace LookupServer {
LookupServer::LookupServer()
{
auto config = Core::ConfigFile::get_for_system("LookupServer");
@ -277,3 +279,5 @@ Vector<String> LookupServer::lookup(const String& hostname, const String& namese
}
return responses;
}
}