X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_close.cpp;h=1520c9df4f063045180599e69e9dc2f5cfab45e6;hb=219993bc9018d9f0d9568330d7a972b68b785d27;hp=016bfe2697756e74700e0fd61a4d06d8c79cb70d;hpb=e3bd782207f50d131acd008b0cbcc7545aac7690;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_close.cpp b/src/modules/m_close.cpp index 016bfe269..1520c9df4 100644 --- a/src/modules/m_close.cpp +++ b/src/modules/m_close.cpp @@ -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://wiki.inspircd.org/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. * @@ -33,7 +43,7 @@ class CommandClose : public Command if ((*u)->registered != REG_ALL) { ServerInstance->Users->QuitUser(*u, "Closing all unknown connections per request"); - std::string key = ConvToStr((*u)->GetIPString())+"."+ConvToStr((*u)->GetPort()); + std::string key = ConvToStr((*u)->GetIPString())+"."+ConvToStr((*u)->GetServerPort()); closed[key]++; } } @@ -48,22 +58,19 @@ class CommandClose : public Command 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.c_str()); - + return CMD_LOCALONLY; } }; class ModuleClose : public Module { - CommandClose* newcommand; + CommandClose cmd; public: ModuleClose(InspIRCd* Me) - : Module(Me) + : Module(Me), cmd(Me) { - // Create a new command - newcommand = new CommandClose(ServerInstance); - ServerInstance->AddCommand(newcommand); - + ServerInstance->AddCommand(&cmd); } virtual ~ModuleClose() @@ -72,7 +79,7 @@ class ModuleClose : public Module virtual Version GetVersion() { - return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION); + return Version("$Id$", VF_VENDOR, API_VERSION); } };