]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/dns.h
Someone got a comparison completely the wrong way around (and it wasnt spotted!)
[user/henk/code/inspircd.git] / include / dns.h
index 9a93a9da74b6b556b93d67037ed97986ad5faa8f..bdc7326bfef26395d1cba9c6f44cdde2ad8d51d8 100644 (file)
@@ -28,6 +28,10 @@ struct dns_ip4list {
        dns_ip4list *next;
 };
 
+
+/** The DNS class allows fast nonblocking resolution of hostnames
+ * and ip addresses. It is based heavily upon firedns by Ian Gulliver.
+ */
 class DNS
 {
 private:
@@ -50,13 +54,42 @@ private:
        char *dns_ntoa4_r(const in_addr * const ip);
        char *dns_getresult_r(const int fd);
 public:
+       /** The default constructor uses dns addresses read from /etc/resolv.conf.
+        * Please note that it will re-read /etc/resolv.conf for each copy of the
+        * class you instantiate, causing disk access and slow lookups if you create
+        * a lot of them. Consider passing the constructor a server address as a parameter
+        * instead.
+        */
        DNS();
+       /** This constructor accepts a dns server address. The address must be in dotted
+        * decimal form, e.g. 1.2.3.4.
+        */
        DNS(std::string dnsserver);
+       /** The destructor frees all used structures.
+        */
        ~DNS();
+       /** This method will start the reverse lookup of an ip given in dotted decimal
+        * format, e.g. 1.2.3.4, and returns true if the lookup was successfully
+        * initiated.
+        */
        bool ReverseLookup(std::string ip);
+       /** This method will start the forward lookup of a hostname, e.g. www.inspircd.org,
+        * and returns true if the lookup was successfully initiated.
+        */
        bool ForwardLookup(std::string host);
+       /** This method will return true when the lookup is completed. It uses poll internally
+        * to determine the status of the socket.
+        */
        bool HasResult();
+       /** This method returns the result of your query as a string, depending upon wether you
+        * called DNS::ReverseLookup() or DNS::ForwardLookup.
+        */
        std::string GetResult();
+       /** This method returns the file handle used by the dns query socket or zero if the
+        * query is invalid for some reason, e.g. the dns server not responding.
+        */
+       int GetFD();
+       void SetNS(std::string dnsserver);
 };
 
 #endif