m_cban: Implement support for channel masks

Allows wildcards to be used
This commit is contained in:
Michael 2020-10-20 02:14:33 -04:00 committed by Sadie Powell
parent 4c801a70be
commit f6d30f8fef
2 changed files with 6 additions and 5 deletions

View File

@ -572,9 +572,9 @@ the network.
Sends a message to all users with the +g snomask.
">
<helpop key="cban" title="/CBAN <channel> [<duration> [:<reason>]]" value="
Sets or removes a global channel ban. You must specify all three parameters
to add a ban, and one parameter to remove a ban (just the channel).
<helpop key="cban" title="/CBAN <channelmask> [<duration> [:<reason>]]" value="
Sets or removes a global channel based ban. You must specify all three parameters
to add a ban, and one parameter to remove a ban (just the channelmask).
The duration may be specified in seconds, or in the format
1y2w3d4h5m6s - meaning one year, two weeks, three days, four hours,

View File

@ -58,7 +58,7 @@ public:
bool Matches(const std::string& s) CXX11_OVERRIDE
{
return irc::equals(matchtext, s);
return InspIRCd::Match(s, matchtext);
}
const std::string& Displayable() CXX11_OVERRIDE
@ -94,7 +94,8 @@ class CommandCBan : public Command
public:
CommandCBan(Module* Creator) : Command(Creator, "CBAN", 1, 3)
{
flags_needed = 'o'; this->syntax = "<channel> [<duration> [:<reason>]]";
flags_needed = 'o';
this->syntax = "<channelmask> [<duration> [:<reason>]]";
}
CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE