]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/inspircd.h
And its all done and working!
[user/henk/code/inspircd.git] / include / inspircd.h
index 1e51043226a014f4bccb208a166afca9cdec1be5..136914276ada0904571794749ac76a4c35562ab5 100644 (file)
@@ -445,14 +445,6 @@ class InspIRCd : public classbase
 
        clonemap global_clones;
 
-       /** Whowas container, contains a map of vectors of users tracked by WHOWAS
-        */
-       irc::whowas::whowas_users whowas;
-
-       /** Whowas container, contains a map of time_t to users tracked by WHOWAS
-        */
-       irc::whowas::whowas_users_fifo whowas_fifo;
-
        /** DNS class, provides resolver facilities to the core and modules
         */
        DNS* Res;
@@ -893,9 +885,10 @@ class InspIRCd : public classbase
 
        /** Add a dns Resolver class to this server's active set
         * @param r The resolver to add
+        * @param cached The value of 'cached' which you passed to the Resolver constructor before this function.
         * @return True if the resolver was added
         */
-        bool AddResolver(Resolver* r);
+        bool AddResolver(Resolver* r, bool cached);
 
        /** Add a command to this server's command parser
         * @param f A command_t command handler object to add