]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix various Doxygen warnings.
authorPeter Powell <petpow@saberuk.com>
Thu, 26 Feb 2015 22:35:06 +0000 (22:35 +0000)
committerPeter Powell <petpow@saberuk.com>
Fri, 27 Feb 2015 00:34:21 +0000 (00:34 +0000)
.gitignore
README.md
include/dns.h

index 0b02b12925cdc270e52009bb95092c39c89c164c..f39aa4a55c73c92d57ef9e017ec358a30ad9b4d7 100644 (file)
@@ -7,6 +7,7 @@
 /BSDmakefile
 /GNUmakefile
 /build
+/docs/doxygen
 /inspircd
 /org.inspircd.plist
 /run
index 70171861c3624c6cba8eed1006bbc79e1c104b33..f3b3c3c32af37b99a08b4ff962bf6590ea5252f1 100644 (file)
--- a/README.md
+++ b/README.md
@@ -18,4 +18,4 @@ many different users.
 
 * [Website](http://inspircd.org)
 * [GitHub](https://github.com/inspircd)
-* IRC: #inspircd on irc.inspircd.org
\ No newline at end of file
+* IRC: \#inspircd on irc.inspircd.org
index 95abaaf801f1c4b65f2351c2fb0ffe6e2c47e52c..de4bcf4223fb713273b3edc2a4a1243f67b35490 100644 (file)
@@ -92,6 +92,7 @@ class CoreExport DNSResult
         * @param res The request result, a hostname or IP
         * @param timetolive The request time-to-live
         * @param orig The original request, a hostname or IP
+        * @param qt The type of DNS query this result represents.
         */
        DNSResult(int i, const std::string &res, unsigned long timetolive, const std::string &orig, QueryType qt = DNS_QUERY_NONE) : id(i), result(res), ttl(timetolive), original(orig), type(qt) { }
 };
@@ -118,6 +119,7 @@ class CoreExport CachedQuery
 
        /** Build a cached query
         * @param res The result data, an IP or hostname
+        * @param qt The type of DNS query this instance represents.
         * @param ttl The time-to-live value of the query result
         */
        CachedQuery(const std::string &res, QueryType qt, unsigned int ttl);