]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_antibear.cpp
Fix iteration of oper blocks by SSLINFO
[user/henk/code/inspircd.git] / src / modules / m_antibear.cpp
index 8eab1359435a11963184d42e6abd972d61e9e711..b9e439d7a6a4c875431682cb4aaa07ff0b49fe3e 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
  * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
@@ -20,9 +20,9 @@ class ModuleAntiBear : public Module
 {
        LocalIntExt bearExt;
  public:
-       ModuleAntiBear(InspIRCd* Me) : Module(Me), bearExt("antibear_timewait", this)
+       ModuleAntiBear() : bearExt("antibear_timewait", this)
        {
-               Extensible::Register(&bearExt);
+               ServerInstance->Extensions.Register(&bearExt);
                Implementation eventlist[] = { I_OnUserRegister, I_OnPreCommand };
                ServerInstance->Modules->Attach(eventlist, this, 2);
        }
@@ -33,7 +33,7 @@ class ModuleAntiBear : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$",VF_VENDOR,API_VERSION);
+               return Version("Sends a numeric on connect which cripples a common type of trojan/spambot",VF_VENDOR);
        }
 
        virtual ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
@@ -42,7 +42,7 @@ class ModuleAntiBear : public Module
                {
                        if (!strncmp(parameters[1].c_str(), "\1TIME Mon May 01 18:54:20 2006", 30))
                        {
-                               ZLine* zl = new ZLine(ServerInstance, ServerInstance->Time(), 86400, ServerInstance->Config->ServerName,
+                               ZLine* zl = new ZLine(ServerInstance->Time(), 86400, ServerInstance->Config->ServerName.c_str(),
                                                "Unless you're stuck in a time warp, you appear to be a bear bot!", user->GetIPString());
                                if (ServerInstance->XLines->AddLine(zl,NULL))
                                {
@@ -62,7 +62,7 @@ class ModuleAntiBear : public Module
                return MOD_RES_PASSTHRU;
        }
 
-       virtual ModResult OnUserRegister(User* user)
+       virtual ModResult OnUserRegister(LocalUser* user)
        {
                user->WriteNumeric(439, "%s :This server has anti-spambot mechanisms enabled.", user->nick.c_str());
                user->WriteNumeric(931, "%s :Malicious bots, spammers, and other automated systems of dubious origin are NOT welcome here.", user->nick.c_str());