aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Jackmcbarn2011-01-30 13:10:12 -0500
committerGravatar Jackmcbarn2011-01-30 13:10:12 -0500
commitb53e121ef459fca3612e6d4b5a02bb2eb07d7580 (patch)
tree788a80b9606b102549098b5aa413a65f3f8ec379 /src
parentFix bug #83 (diff)
Remove dns.h from inspircd.h
Diffstat (limited to 'src')
-rw-r--r--src/commands/cmd_clearcache.cpp1
-rw-r--r--src/configreader.cpp1
-rw-r--r--src/dns.cpp1
-rw-r--r--src/inspircd.cpp1
-rw-r--r--src/modules.cpp1
-rw-r--r--src/modules/m_cgiirc.cpp1
-rw-r--r--src/modules/m_dnsbl.cpp1
-rw-r--r--src/modules/m_spanningtree/resolvers.h1
-rw-r--r--src/user_resolver.cpp1
-rw-r--r--src/users.cpp1
10 files changed, 10 insertions, 0 deletions
diff --git a/src/commands/cmd_clearcache.cpp b/src/commands/cmd_clearcache.cpp
index ecf2c07fc..d6d5cf2af 100644
--- a/src/commands/cmd_clearcache.cpp
+++ b/src/commands/cmd_clearcache.cpp
@@ -13,6 +13,7 @@
#include "inspircd.h"
+#include "dns.h"
#include "users.h"
#include "channels.h"
#include "ctables.h"
diff --git a/src/configreader.cpp b/src/configreader.cpp
index ceb84ac3e..1856a902d 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -12,6 +12,7 @@
*/
#include "inspircd.h"
+#include "dns.h"
#include <fstream>
#include "xline.h"
#include "exitcodes.h"
diff --git a/src/dns.cpp b/src/dns.cpp
index 980eff33e..81cfb0356 100644
--- a/src/dns.cpp
+++ b/src/dns.cpp
@@ -32,6 +32,7 @@ looks like this, walks like this or tastes like this.
#endif
#include "inspircd.h"
+#include "dns.h"
/** Masks to mask off the responses we get from the DNSRequest methods
*/
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 1c2c6a07b..2ddd9e001 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -13,6 +13,7 @@
#include "inspircd.h"
#include "cull_list.h"
+#include "dns.h"
#include "protocol.h"
#include "bancache.h"
#include <signal.h>
diff --git a/src/modules.cpp b/src/modules.cpp
index 0f32ca113..64a8ec917 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -13,6 +13,7 @@
#include "inspircd.h"
#include "cull_list.h"
+#include "dns.h"
#include "protocol.h"
#include "xline.h"
#include "exitcodes.h"
diff --git a/src/modules/m_cgiirc.cpp b/src/modules/m_cgiirc.cpp
index 4397f42b4..cb3642779 100644
--- a/src/modules/m_cgiirc.cpp
+++ b/src/modules/m_cgiirc.cpp
@@ -12,6 +12,7 @@
*/
#include "inspircd.h"
+#include "dns.h"
/* $ModDesc: Change user's hosts connecting from known CGI:IRC hosts */
diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp
index d3db3ce97..083043d64 100644
--- a/src/modules/m_dnsbl.cpp
+++ b/src/modules/m_dnsbl.cpp
@@ -12,6 +12,7 @@
*/
#include "inspircd.h"
+#include "dns.h"
#include "xline.h"
#ifndef WINDOWS
diff --git a/src/modules/m_spanningtree/resolvers.h b/src/modules/m_spanningtree/resolvers.h
index 348debe47..0af278fca 100644
--- a/src/modules/m_spanningtree/resolvers.h
+++ b/src/modules/m_spanningtree/resolvers.h
@@ -16,6 +16,7 @@
#include "socket.h"
#include "inspircd.h"
+#include "dns.h"
#include "xline.h"
#include "utils.h"
diff --git a/src/user_resolver.cpp b/src/user_resolver.cpp
index 9268f3938..a30128c58 100644
--- a/src/user_resolver.cpp
+++ b/src/user_resolver.cpp
@@ -12,6 +12,7 @@
*/
#include "inspircd.h"
+#include "dns.h"
UserResolver::UserResolver(LocalUser* user, std::string to_resolve, QueryType qt, bool &cache) :
Resolver(to_resolve, qt, cache, NULL), uuid(user->uuid)
{
diff --git a/src/users.cpp b/src/users.cpp
index 36472b549..0954ece9d 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -12,6 +12,7 @@
*/
#include "inspircd.h"
+#include "dns.h"
#include "protocol.h"
#include <stdarg.h>
#include "xline.h"