]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_securelist.cpp
Mention ulines too
[user/henk/code/inspircd.git] / src / modules / m_securelist.cpp
index b86a35b7ffa91e1f071e4e98162e938681eccfcf..2a693836c9140e4f803a3a0a5d606e365ee88113 100644 (file)
@@ -27,14 +27,14 @@ class ModuleSecureList : public Module
                Implementation eventlist[] = { I_OnRehash, I_OnPreCommand, I_On005Numeric };
                ServerInstance->Modules->Attach(eventlist, this, 3);
        }
+
        virtual ~ModuleSecureList()
        {
        }
+
        virtual Version GetVersion()
        {
-               return Version(1,2,0,0,VF_VENDOR,API_VERSION);
+               return Version("$Id$",VF_VENDOR,API_VERSION);
        }
 
        void OnRehash(User* user, const std::string &parameter)
@@ -48,23 +48,23 @@ class ModuleSecureList : public Module
                WaitTime = MyConf->ReadInteger("securelist", "waittime", "60", 0, true);
                delete MyConf;
        }
+
 
        /*
         * OnPreCommand()
         *   Intercept the LIST command.
-        */ 
-       virtual int OnPreCommand(const std::string &command, const std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
+        */
+       virtual int OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
        {
                /* If the command doesnt appear to be valid, we dont want to mess with it. */
                if (!validated)
                        return 0;
+
                if ((command == "LIST") && (ServerInstance->Time() < (user->signon+WaitTime)) && (!IS_OPER(user)))
                {
                        /* Normally wouldnt be allowed here, are they exempt? */
                        for (std::vector<std::string>::iterator x = allowlist.begin(); x != allowlist.end(); x++)
-                               if (ServerInstance->MatchText(user->MakeHost(), *x))
+                               if (InspIRCd::Match(user->MakeHost(), *x))
                                        return 0;
 
                        /* Not exempt, BOOK EM DANNO! */
@@ -91,5 +91,5 @@ class ModuleSecureList : public Module
        }
 
 };
+
 MODULE_INIT(ModuleSecureList)