]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/dns.h
added added "./configure -svnupdate rebuild"
[user/henk/code/inspircd.git] / include / dns.h
index 63d5bb1fb78174a15b840d80a031164184044477..91e65577561fe6fc9035ca9d1966afe5ca3ba9ad 100644 (file)
@@ -78,6 +78,9 @@ public:
         * and returns true if the lookup was successfully initiated.
         */
        bool ForwardLookup(std::string host);
+       /** Used by modules to perform a dns lookup but have the socket engine poll a module, instead of the dns object directly.
+        */
+       bool ForwardLookupWithFD(std::string host, int &fd);
        /** This method will return true when the lookup is completed. It uses poll internally
         * to determine the status of the socket.
         */
@@ -97,4 +100,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