From: peavey Date: Sun, 29 Jul 2007 12:17:45 +0000 (+0000) Subject: Add /CLOSE which quit off all unregistered client connections. Based on the U4 module. X-Git-Tag: v2.0.23~4854 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=1f178250c7ea3ce5e02b94a3437f98ccaa62d701;p=user%2Fhenk%2Fcode%2Finspircd.git Add /CLOSE which quit off all unregistered client connections. Based on the U4 module. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7607 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_close.cpp b/src/modules/m_close.cpp new file mode 100644 index 000000000..93328a5a9 --- /dev/null +++ b/src/modules/m_close.cpp @@ -0,0 +1,81 @@ +/* +------------------------------------+ + * | UnrealIRCd v4.0 | + * +------------------------------------+ + * + * UnrealIRCd 4.0 (C) 2007 Carsten Valdemar Munk + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#include "inspircd.h" +#include "users.h" +#include "channels.h" +#include "modules.h" + +/* $ModDesc: Provides /CLOSE functionality */ + +/** Handle /CLOSE + */ +class cmd_close : public command_t +{ + public: + /* Command 'close', needs operator */ + cmd_close (InspIRCd* Instance) : command_t(Instance,"CLOSE", 'o', 0) + { + this->source = "m_close.so"; + } + + CmdResult Handle (const char** parameters, int pcnt, userrec *user) + { + std::map closed; + + for (std::vector::iterator u = ServerInstance->local_users.begin(); u != ServerInstance->local_users.end(); u++) + { + if ((*u)->registered != REG_ALL) + { + userrec::QuitUser(ServerInstance, *u, "Closing all unknown connections per request"); + std::string key = ConvToStr((*u)->GetIPString())+"."+ConvToStr((*u)->GetPort()); + closed[key]++; + } + } + + int total = 0; + for (std::map::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()); + total += (*ci).second; + } + if (total) + user->WriteServ("NOTICE %s :*** %i unknown connection%s closed",user->nick,total,(total>1)?"s":""); + else + user->WriteServ("NOTICE %s :*** No unknown connections found",user->nick); + + return CMD_LOCALONLY; + } +}; + +class ModuleClose : public Module +{ + cmd_close* newcommand; + public: + ModuleClose(InspIRCd* Me) + : Module(Me) + { + // Create a new command + newcommand = new cmd_close(ServerInstance); + ServerInstance->AddCommand(newcommand); + } + + virtual ~ModuleClose() + { + } + + virtual Version GetVersion() + { + return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION); + } +}; + +MODULE_INIT(ModuleClose)