]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_securelist.cpp
Auto loading of commands as shared objects via dlsym (very lightweight interface...
[user/henk/code/inspircd.git] / src / modules / m_securelist.cpp
index 232a083beb35febfdbf792e869b981fcb98a02f9..14eb2aecff8a3039fc8d1cd9f7853bde76ed53f6 100644 (file)
@@ -19,23 +19,20 @@ using namespace std;
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
-#include "message.h"
+
 #include <vector>
 #include "inspircd.h"
 
-extern time_t TIME;
-
 /* $ModDesc: A module overriding /list, and making it safe - stop those sendq problems. */
+
 class ModuleSecureList : public Module
 {
  private:
-        Server *Srv;
+        
  public:
-       ModuleSecureList(Server* Me) : Module::Module(Me)
+       ModuleSecureList(InspIRCd* Me) : Module::Module(Me)
        {
-               Srv = Me;
+               
        }
  
        virtual ~ModuleSecureList()
@@ -62,7 +59,7 @@ class ModuleSecureList : public Module
                if (!validated)
                        return 0;
  
-               if ((command == "LIST") && (TIME < (user->signon+60)) && (!*user->oper))
+               if ((command == "LIST") && (ServerInstance->Time() < (user->signon+60)) && (!*user->oper))
                {
                        user->WriteServ("NOTICE %s :*** You cannot list within the first minute of connecting. Please try again later.",user->nick);
                        /* Some crap clients (read: mIRC, various java chat applets) muck up if they don't
@@ -82,7 +79,7 @@ class ModuleSecureList : public Module
 
        virtual Priority Prioritize()
        {
-               return (Priority)Srv->PriorityBefore("m_safelist.so");
+               return (Priority)ServerInstance->PriorityBefore("m_safelist.so");
        }
 
 };
@@ -102,7 +99,7 @@ class ModuleSecureListFactory : public ModuleFactory
        {
        }
  
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleSecureList(Me);
        }