]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_testnet.cpp
Remove UserManager::GarbageCollect()
[user/henk/code/inspircd.git] / src / modules / m_testnet.cpp
index 6a0cfa303311667f05ad21390ea424b9e3a05ec8..6e05ed681662f53c156804e828d13e9afa3d8874 100644 (file)
@@ -1,17 +1,21 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
  *
- * This program is free but copyrighted software; see
- *         the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/* $ModDesc: Provides a module for testing the server while linked in a network */
 
 #include "inspircd.h"
 
@@ -32,14 +36,9 @@ class CommandTest : public Command
                        for(unsigned int i=0; i < count; i++)
                                user->Write(line);
                }
-               else if (parameters[0] == "freeze")
-               {
-                       user->Penalty += 100;
-               }
-               else if (parameters[0] == "shutdown")
+               else if (parameters[0] == "freeze" && IS_LOCAL(user) && parameters.size() > 1)
                {
-                       int i = parameters.size() > 1 ? atoi(parameters[1].c_str()) : 2;
-                       ServerInstance->SE->Shutdown(user->GetFd(), i);
+                       IS_LOCAL(user)->CommandFloodPenalty += atoi(parameters[1].c_str());
                }
                return CMD_SUCCESS;
        }
@@ -50,17 +49,19 @@ class ModuleTest : public Module
        CommandTest cmd;
  public:
        ModuleTest() : cmd(this)
+       {
+       }
+
+       void init() CXX11_OVERRIDE
        {
                if (!strstr(ServerInstance->Config->ServerName.c_str(), ".test"))
                        throw ModuleException("Don't load modules without reading their descriptions!");
-               ServerInstance->AddCommand(&cmd);
        }
 
-       Version GetVersion()
+       Version GetVersion() CXX11_OVERRIDE
        {
                return Version("Provides a module for testing the server while linked in a network", VF_VENDOR|VF_OPTCOMMON);
        }
 };
 
 MODULE_INIT(ModuleTest)
-