]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/dns.h
Implement <options:prefixpart|suffixpart|fixedpart>
[user/henk/code/inspircd.git] / include / dns.h
index b00c57201f1062b0079052904f65fea830ad82b5..adb9fdab853d02ab2f5eb5b5f1e1a23d95b3e780 100644 (file)
@@ -286,8 +286,10 @@ class CoreExport Resolver : public Extensible
         * result, this is the number of seconds remaining before refresh/expiry.
         * @param cached True if the result is a cached result, false if it was requested
         * from the DNS server.
+        * @param resultnum Result number, for records with multiple matching results.
+        * Normally, you will only want to act on this when the result is 0.
         */
-       virtual void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached) = 0;
+       virtual void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached, int resultnum = 0) = 0;
        /**
         * If an error occurs (such as NXDOMAIN, no domain name found) then this method
         * will be called.
@@ -439,8 +441,9 @@ class CoreExport DNS : public EventHandler
        /**
         * Fetch the result string (an ip or host)
         * and/or an error message to go with it.
+        * @param resultnum Result number to fetch
         */
-       DNSResult GetResult();
+       DNSResult GetResult(int resultnum);
 
        /**
         * Handle a SocketEngine read event