summaryrefslogtreecommitdiff
path: root/include/dns.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-16 09:56:33 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-16 09:56:33 +0000
commit898e8da56573c70524a926c1df5dbab7ffcca6a5 (patch)
treec39386855aacfb719554af7cb3afe0d3c62e59b4 /include/dns.h
parent7cf8d9c1c8ba68419d282e715b7fc3575987a6f2 (diff)
Moved command parsing crap into command_parse.cpp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2505 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/dns.h')
-rw-r--r--include/dns.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/dns.h b/include/dns.h
index 63d5bb1fb..33b5f8c7a 100644
--- a/include/dns.h
+++ b/include/dns.h
@@ -97,4 +97,11 @@ public:
void SetNS(std::string dnsserver);
};
+/** This is the handler function for multi-threaded DNS.
+ * It cannot be a class member as pthread will not let us
+ * create a thread whos handler function is a member of
+ * a class (ugh).
+ */
+void* dns_task(void* arg);
+
#endif