]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Merge pull request #1127 from SaberUK/master+testnet
authorAttila Molnar <attilamolnar@hush.com>
Sat, 20 Feb 2016 13:47:22 +0000 (14:47 +0100)
committerAttila Molnar <attilamolnar@hush.com>
Sat, 20 Feb 2016 13:47:22 +0000 (14:47 +0100)
Remove the useless testnet module.

docs/conf/modules.conf.example
src/modules/m_testnet.cpp [deleted file]

index d6d55ec7a562aa61c7bf2326b23d49ddb1494844..69ffb537d688941d2fbfab0e66c35553d12e3cd8 100644 (file)
 # To use, SWHOIS must be in one of your oper class blocks.
 #<module name="swhois">
 
-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
-# Test module: Enable this to create a command useful in testing
-# flood control. To avoid accidental use on live networks, the server
-# name must contain ".test" to load the module
-#<module name="testnet">
-
 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
 # Timed bans module: Adds timed channel bans with the /TBAN command.
 #<module name="timedbans">
diff --git a/src/modules/m_testnet.cpp b/src/modules/m_testnet.cpp
deleted file mode 100644 (file)
index 6e05ed6..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * InspIRCd -- Internet Relay Chat Daemon
- *
- *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
- *
- * 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/>.
- */
-
-
-#include "inspircd.h"
-
-class CommandTest : public Command
-{
- public:
-       CommandTest(Module* parent) : Command(parent, "TEST", 1)
-       {
-               syntax = "<action> <parameters>";
-       }
-
-       CmdResult Handle(const std::vector<std::string> &parameters, User *user)
-       {
-               if (parameters[0] == "flood")
-               {
-                       unsigned int count = parameters.size() > 1 ? atoi(parameters[1].c_str()) : 100;
-                       std::string line = parameters.size() > 2 ? parameters[2] : ":z.z NOTICE !flood :Flood text";
-                       for(unsigned int i=0; i < count; i++)
-                               user->Write(line);
-               }
-               else if (parameters[0] == "freeze" && IS_LOCAL(user) && parameters.size() > 1)
-               {
-                       IS_LOCAL(user)->CommandFloodPenalty += atoi(parameters[1].c_str());
-               }
-               return CMD_SUCCESS;
-       }
-};
-
-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!");
-       }
-
-       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)