the big rename

This commit is contained in:
bert hubert 2018-04-12 16:22:35 +02:00
parent 9dd1e50cf6
commit b4e814d6b4
6 changed files with 5 additions and 5 deletions

View File

@ -12,5 +12,5 @@ clean:
-include *.d
tdns: tdns.o dns-types.o dns-storage.o dnsmessages.o contents.o ext/simplesocket/comboaddress.o ext/simplesocket/sclasses.o ext/simplesocket/swrappers.o
tdns: tdns.o record-types.o dns-storage.o dnsmessages.o contents.o ext/simplesocket/comboaddress.o ext/simplesocket/sclasses.o ext/simplesocket/swrappers.o
g++ -std=gnu++14 $^ -o $@ -pthread

View File

@ -1,5 +1,5 @@
#include "dns-storage.hh"
#include "dns-types.hh"
#include "record-types.hh"
void loadZones(DNSNode& zones)
{

View File

@ -1,5 +1,5 @@
#include "dnsmessages.hh"
#include "dns-types.hh"
#include "record-types.hh"
using namespace std;

View File

@ -1,4 +1,4 @@
#include "dns-types.hh"
#include "record-types.hh"
std::unique_ptr<RRGen> AGen::make(const ComboAddress& ca)
{

View File

@ -11,7 +11,7 @@
#include "safearray.hh"
#include <thread>
#include <signal.h>
#include "dns-types.hh"
#include "record-types.hh"
#include "dns-storage.hh"
using namespace std;