]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_tline.cpp
m_spanningtree Remove duplicate code for sending channel messages from RouteCommand()
[user/henk/code/inspircd.git] / src / modules / m_tline.cpp
index 0efd496c6207ce5a4d69556e14e086d5f061149c..bf1476bb541a2810b1d82fecf5001af6fa4da5e6 100644 (file)
@@ -1,28 +1,33 @@
-/*       +------------------------------------+
- *       | 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) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2006-2007 Craig Edwards <craigedwards@brainbox.cc>
  *
- * 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/>.
  */
 
-#include "inspircd.h"
 
-/* $ModDesc: Provides /tline command used to test who a mask matches */
+#include "inspircd.h"
 
 /** Handle /TLINE
  */
 class CommandTline : public Command
 {
  public:
-       CommandTline (InspIRCd* Instance, Module* Creator) : Command(Instance, Creator,"TLINE", "o", 1)
+       CommandTline(Module* Creator) : Command(Creator,"TLINE", 1)
        {
-               this->syntax = "<mask>";
+               flags_needed = 'o'; this->syntax = "<mask>";
        }
 
        CmdResult Handle (const std::vector<std::string> &parameters, User *user)
@@ -42,7 +47,7 @@ class CommandTline : public Command
                        }
                        else
                        {
-                               std::string host = std::string(u->second->ident) + "@" + u->second->GetIPString();
+                               std::string host = u->second->ident + "@" + u->second->GetIPString();
                                if (InspIRCd::MatchCIDR(host, parameters[0]))
                                {
                                        n_matched++;
@@ -55,7 +60,7 @@ class CommandTline : public Command
                else
                        user->WriteServ( "NOTICE %s :*** TLINE: Counted %0.0f user(s). Matched '%s' against no user(s).", user->nick.c_str(), n_counted, parameters[0].c_str());
 
-               return CMD_LOCALONLY;
+               return CMD_SUCCESS;
        }
 };
 
@@ -63,22 +68,20 @@ class ModuleTLine : public Module
 {
        CommandTline cmd;
  public:
-       ModuleTLine(InspIRCd* Me)
-               : Module(Me), cmd(Me, this)
+       ModuleTLine()
+               : cmd(this)
        {
-               ServerInstance->AddCommand(&cmd);
        }
 
-
-       virtual ~ModuleTLine()
+       void init() CXX11_OVERRIDE
        {
+               ServerInstance->Modules->AddService(cmd);
        }
 
-       virtual Version GetVersion()
+       Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("$Id$", VF_VENDOR,API_VERSION);
+               return Version("Provides /tline command used to test who a mask matches", VF_VENDOR);
        }
 };
 
 MODULE_INIT(ModuleTLine)
-