]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_close.cpp
Maxpara on these was 3, should be 2
[user/henk/code/inspircd.git] / src / modules / m_close.cpp
index da3760de147359f0f85bd5de8a62bdfe3b9f5fea..0a3f0d9fa013078cd93fe55981b666abe63279ca 100644 (file)
@@ -1,8 +1,18 @@
 /*       +------------------------------------+
- *       | UnrealIRCd v4.0                    |
+ *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- * UnrealIRCd 4.0 (C) 2008 Carsten Valdemar Munk 
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ *
+ * Based on the UnrealIRCd 4.0 (1.1.x fork) module
+ *
+ * UnrealIRCd 4.0 (C) 2007 Carsten Valdemar Munk
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
@@ -24,7 +34,7 @@ class CommandClose : public Command
                this->source = "m_close.so";
        }
 
-       CmdResult Handle (const char** parameters, int pcnt, User *user)
+       CmdResult Handle (const std::vector<std::string> &parameters, User *user)
        {
                std::map<std::string,int> closed;
 
@@ -32,7 +42,7 @@ class CommandClose : public Command
                {
                        if ((*u)->registered != REG_ALL)
                        {
-                               User::QuitUser(ServerInstance, *u, "Closing all unknown connections per request");
+                               ServerInstance->Users->QuitUser(*u, "Closing all unknown connections per request");
                                std::string key = ConvToStr((*u)->GetIPString())+"."+ConvToStr((*u)->GetPort());
                                closed[key]++;
                        }
@@ -41,14 +51,14 @@ class CommandClose : public Command
                int total = 0;
                for (std::map<std::string,int>::iterator ci = closed.begin(); ci != closed.end(); ci++)
                {
-                       user->WriteServ("NOTICE %s :*** Closed %d unknown connection%s from [%s]",user->nick,(*ci).second,((*ci).second>1)?"s":"",(*ci).first.c_str());
+                       user->WriteServ("NOTICE %s :*** Closed %d unknown connection%s from [%s]",user->nick.c_str(),(*ci).second,((*ci).second>1)?"s":"",(*ci).first.c_str());
                        total += (*ci).second;
                }
                if (total)
-                       user->WriteServ("NOTICE %s :*** %i unknown connection%s closed",user->nick,total,(total>1)?"s":"");
+                       user->WriteServ("NOTICE %s :*** %i unknown connection%s closed",user->nick.c_str(),total,(total>1)?"s":"");
                else
-                       user->WriteServ("NOTICE %s :*** No unknown connections found",user->nick);
-                       
+                       user->WriteServ("NOTICE %s :*** No unknown connections found",user->nick.c_str());
+
                return CMD_LOCALONLY;
        }
 };
@@ -72,7 +82,7 @@ class ModuleClose : public Module
 
        virtual Version GetVersion()
        {
-               return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
+               return Version("$Id$", VF_VENDOR, API_VERSION);
        }
 };