X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_messageflood.cpp;h=6f3beb5125593ac3149bed117baf5c1f0b969498;hb=730d2a2c2af916b32a46c3f0792e99b3275839cc;hp=9a9f684e5d75046e5892d061a396cadca647a5b0;hpb=6aecd4c9ec0e09d04a6a5e59182a229b3c374b69;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_messageflood.cpp b/src/modules/m_messageflood.cpp index 9a9f684e5..6f3beb512 100644 --- a/src/modules/m_messageflood.cpp +++ b/src/modules/m_messageflood.cpp @@ -200,43 +200,48 @@ class ModuleMsgFlood : public Module { mf = new MsgFlood(ServerInstance); - ServerInstance->AddMode(mf, 'f'); + if (!ServerInstance->AddMode(mf, 'f')) + throw ModuleException("Could not add new modes!"); } void ProcessMessages(userrec* user,chanrec* dest, const std::string &text) { - if (IS_LOCAL(user)) + if (!IS_LOCAL(user) || CHANOPS_EXEMPT(ServerInstance, 'f') && dest->GetStatus(user) == STATUS_OP) { - floodsettings *f; - if (dest->GetExt("flood", f)) + return; + } + + floodsettings *f; + if (dest->GetExt("flood", f)) + { + f->addmessage(user); + if (f->shouldkick(user)) { - f->addmessage(user); - if (f->shouldkick(user)) + /* Youre outttta here! */ + f->clear(user); + if (f->ban) { - /* Youre outttta here! */ - f->clear(user); - if (f->ban) - { - const char* parameters[3]; - parameters[0] = dest->name; - parameters[1] = "+b"; - parameters[2] = user->MakeWildHost(); - ServerInstance->SendMode(parameters,3,user); - std::deque n; - /* Propogate the ban to other servers. - * We dont know what protocol we may be using, - * so this event is picked up by our protocol - * module and formed into a ban command that - * suits the protocol in use. - */ - n.push_back(dest->name); - n.push_back("+b"); - n.push_back(user->MakeWildHost()); - Event rmode((char *)&n, NULL, "send_mode"); - rmode.Send(ServerInstance); - } - dest->ServerKickUser(user, "Channel flood triggered (mode +f)", true); + const char* parameters[3]; + parameters[0] = dest->name; + parameters[1] = "+b"; + parameters[2] = user->MakeWildHost(); + ServerInstance->SendMode(parameters,3,user); + std::deque n; + /* Propogate the ban to other servers. + * We dont know what protocol we may be using, + * so this event is picked up by our protocol + * module and formed into a ban command that + * suits the protocol in use. + */ + n.push_back(dest->name); + n.push_back("+b"); + n.push_back(user->MakeWildHost()); + Event rmode((char *)&n, NULL, "send_mode"); + rmode.Send(ServerInstance); } + char kickmessage[MAXBUF]; + snprintf(kickmessage, MAXBUF, "Channel flood triggered (limit is %d lines in %d secs)", f->lines, f->secs); + dest->ServerKickUser(user, kickmessage, true); } } }