]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_operflood.cpp
Fix the 'i/o error on connection (no error)' stuff, by displaying 'connected closed...
[user/henk/code/inspircd.git] / src / modules / m_operflood.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "users.h"
16 #include "channels.h"
17 #include "modules.h"
18
19 /* $ModDesc: Removes flood limits from users upon opering up. */
20 class ModuleOperFlood : public Module
21 {
22 public:
23         ModuleOperFlood(InspIRCd * Me) : Module(Me)
24         {
25                 Implementation eventlist[] = { I_OnPostOper };
26                 ServerInstance->Modules->Attach(eventlist, this, 1);
27         }
28
29         Version GetVersion()
30         {
31                 return Version("$Id$", VF_VENDOR, API_VERSION);
32         }
33
34         void OnPostOper(User* user, const std::string &opertype, const std::string &opername)
35         {
36                 if(!IS_LOCAL(user))
37                         return;
38
39                 user->ExemptFromPenalty = true;
40                 user->WriteServ("NOTICE %s :*** You are now free from flood limits.", user->nick.c_str());
41         }
42 };
43
44 MODULE_INIT(ModuleOperFlood)