X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_connflood.cpp;h=e3fea05218933858ab01382660f92d2717dacb5f;hb=e6d000042ea75d4e0485bec9564b47163a3ca414;hp=291074c98c883e8ed02a83f1b07f2c5149115c05;hpb=76ebc88ccd6fef0bf2d97b607829fb3466e273af;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_connflood.cpp b/src/modules/m_connflood.cpp index 291074c98..e3fea0521 100644 --- a/src/modules/m_connflood.cpp +++ b/src/modules/m_connflood.cpp @@ -1,26 +1,16 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * + * InspIRCd: (C) 2002-2007 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 */ @@ -38,7 +28,7 @@ private: public: - ModuleConnFlood(InspIRCd* Me) : Module::Module(Me) + ModuleConnFlood(InspIRCd* Me) : Module(Me) { InitConf(); @@ -50,7 +40,7 @@ public: virtual Version GetVersion() { - return Version(1,0,0,0,0); + return Version(1,1,0,0,VF_VENDOR,API_VERSION); } void Implements(char* List) @@ -71,15 +61,16 @@ 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(userrec* 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; @@ -93,10 +84,10 @@ public: /* expire throttle */ throttled = 0; ServerInstance->WriteOpers("*** Connection throttle deactivated"); - return; + return 0; } userrec::QuitUser(ServerInstance, user, quitmsg); - return; + return 1; } if (tdiff <= seconds) @@ -106,7 +97,7 @@ public: throttled = 1; ServerInstance->WriteOpers("*** Connection throttle activated"); userrec::QuitUser(ServerInstance, user, quitmsg); - return; + return 1; } } else @@ -114,35 +105,14 @@ public: conns = 1; first = next; } + return 0; } - virtual void OnRehash(const std::string ¶meter) + virtual void OnRehash(userrec* 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)