summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2009-06-30 13:59:27 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2009-06-30 13:59:27 +0000
commit7c2334ddd64be97d13f1add53aa05f185d9450d2 (patch)
tree4189e7ff6617f491680800df6268861c7a2f2248 /include
parent5af5707b6dc5d216e9bef043f9a37ae640e46a3e (diff)
Roll back mysterious DNS change from 2007 which broke multiple-answer
DNS requests (CNAME, A). It looks like this was to be related to bitmask dnsbl support, but it would never have worked anyway (resultnum was always 0..). git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11419 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/dns.h7
-rw-r--r--include/users.h3
2 files changed, 3 insertions, 7 deletions
diff --git a/include/dns.h b/include/dns.h
index e9c5fe924..4f577366b 100644
--- a/include/dns.h
+++ b/include/dns.h
@@ -284,10 +284,8 @@ 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, int resultnum = 0) = 0;
+ virtual void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached) = 0;
/**
* If an error occurs (such as NXDOMAIN, no domain name found) then this method
@@ -450,9 +448,8 @@ 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(int resultnum);
+ DNSResult GetResult();
/**
* Handle a SocketEngine read event
diff --git a/include/users.h b/include/users.h
index 7887d545d..9d1072f57 100644
--- a/include/users.h
+++ b/include/users.h
@@ -1139,9 +1139,8 @@ class CoreExport UserResolver : public Resolver
* @param result Result string
* @param ttl Time to live for result
* @param cached True if the result was found in the cache
- * @param resultnum Result number, we are only interested in result 0
*/
- void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached, int resultnum = 0);
+ void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached);
/** Called on failed lookup
* @param e Error code