X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_connflood.cpp;h=d25b6abfcba58e2bbb02491d9ef9be63aedc7f96;hb=58f4306bb6e1f91076fccf30a3b43a40b3d1915a;hp=a7a7d33b625c0997a9f9a11d33e3afeeef6379c8;hpb=d0b4bb3811458aa335857514e4cbb95d5c84f433;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_connflood.cpp b/src/modules/m_connflood.cpp index a7a7d33b6..d25b6abfc 100644 --- a/src/modules/m_connflood.cpp +++ b/src/modules/m_connflood.cpp @@ -1,34 +1,21 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * + * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits * - * --- This module contributed by pippijn --- - * - * Written by Craig Edwards, Craig McLure, and others. * This program is free but copyrighted software; see - * the file COPYING for details. + * the file COPYING for details. * * --------------------------------------------------- */ -using namespace std; - -#include "users.h" -#include "modules.h" -#include "helperfuncs.h" #include "inspircd.h" /* $ModDesc: Connection throttle */ int conns = 0, throttled = 0; -extern time_t TIME; - -extern InspIRCd* ServerInstance; class ModuleConnFlood : public Module { @@ -38,13 +25,15 @@ private: std::string quitmsg; ConfigReader* conf; - + public: - ModuleConnFlood(InspIRCd* Me) : Module::Module(Me) + ModuleConnFlood(InspIRCd* Me) : Module(Me) { - + InitConf(); + Implementation eventlist[] = { I_OnRehash, I_OnUserRegister }; + ServerInstance->Modules->Attach(eventlist, this, 2); } virtual ~ModuleConnFlood() @@ -53,18 +42,13 @@ public: virtual Version GetVersion() { - return Version(1,0,0,0,0); + return Version(1,2,0,0,VF_VENDOR,API_VERSION); } - void Implements(char* List) - { - List[I_OnRehash] = List[I_OnUserRegister] = 1; - } - void InitConf() { /* read configuration variables */ - conf = new ConfigReader; + conf = new ConfigReader(ServerInstance); /* throttle configuration */ seconds = conf->ReadInteger("connflood", "seconds", 0, true); maxconns = conf->ReadInteger("connflood", "maxconns", 0, true); @@ -74,14 +58,15 @@ public: /* seconds to wait when the server just booted */ boot_wait = conf->ReadInteger("connflood", "bootwait", 0, true); - first = TIME; + first = ServerInstance->Time(); } - - virtual void OnUserRegister(userrec* user) + + virtual int OnUserRegister(User* user) { - time_t next = TIME; - if (!first) - first = next - boot_wait; + time_t next = ServerInstance->Time(); + + if ((ServerInstance->startup_time + boot_wait) > next) + return 0; /* time difference between first and latest connection */ time_t tdiff = next - first; @@ -95,11 +80,12 @@ public: { /* expire throttle */ throttled = 0; - ServerInstance->WriteOpers("*** Connection throttle deactivated"); - return; + ServerInstance->SNO->WriteToSnoMask('A', "Connection throttle deactivated"); + return 0; } - userrec::QuitUser(ServerInstance, user, quitmsg); - return; + + ServerInstance->Users->QuitUser(user, quitmsg); + return 1; } if (tdiff <= seconds) @@ -107,9 +93,9 @@ public: if (conns >= maxconns) { throttled = 1; - ServerInstance->WriteOpers("*** Connection throttle activated"); - userrec::QuitUser(ServerInstance, user, quitmsg); - return; + ServerInstance->SNO->WriteToSnoMask('A', "Connection throttle activated"); + ServerInstance->Users->QuitUser(user, quitmsg); + return 1; } } else @@ -117,35 +103,14 @@ public: conns = 1; first = next; } + return 0; } - virtual void OnRehash(const std::string ¶meter) + virtual void OnRehash(User* user, const std::string ¶meter) { InitConf(); } }; - -class ModuleConnFloodFactory : public ModuleFactory -{ -public: - ModuleConnFloodFactory() - { - } - - ~ModuleConnFloodFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleConnFlood(Me); - } -}; - - -extern "C" void * init_module( void ) -{ - return new ModuleConnFloodFactory; -} +MODULE_INIT(ModuleConnFlood)