1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00

can now tile background and made sure the IRC choose server popup still works

This commit is contained in:
Christopher Dumas 2019-05-26 10:14:03 -07:00 committed by Andreas Kling
parent 50154a23cb
commit c23882dde1
15 changed files with 127 additions and 44 deletions

View file

@ -13,6 +13,7 @@
#include <AK/BufferStream.h>
#include "DNSPacket.h"
#include "DNSRecord.h"
#include <LibCore/CConfigFile.h>
#define T_A 1
#define T_NS 2
@ -35,8 +36,8 @@ int main(int argc, char**argv)
auto config = CConfigFile::get_for_system("LookupServer");
dbgprintf("LookupServer: Using network config file at %s.\n",
config->file_name().view().characters());
const String& DNS_IP = config->read_entry("DNS", "IPAddress", "127.0.0.53");
config->file_name().characters());
auto DNS_IP = config->read_entry("DNS", "IPAddress", "127.0.0.53");
HashMap<String, IPv4Address> dns_cache;