]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_exemptchanops.cpp
Expand searching in m_httpd_stats, add global handling of GET parameters (#1566)
[user/henk/code/inspircd.git] / src / modules / m_exemptchanops.cpp
index b1d7b35dfc31aa2066649c81a961723af2b3e829..a7f86cdb5440c25c6769b37a3688823f9d977eea 100644 (file)
 class ExemptChanOps : public ListModeBase
 {
  public:
-       ExemptChanOps(Module* Creator) : ListModeBase(Creator, "exemptchanops", 'X', "End of channel exemptchanops list", 954, 953, false, "exemptchanops") { }
+       ExemptChanOps(Module* Creator)
+               : ListModeBase(Creator, "exemptchanops", 'X', "End of channel exemptchanops list", 954, 953, false)
+       {
+       }
 
-       bool ValidateParam(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE {
+       bool ValidateParam(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE
+       {
                std::string::size_type p = word.find(':');
                if (p == std::string::npos)
                {
@@ -51,21 +55,6 @@ class ExemptChanOps : public ListModeBase
 
                return true;
        }
-
-       void TellListTooLong(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE
-       {
-               user->WriteNumeric(959, chan->name, word, "Channel exemptchanops list is full");
-       }
-
-       void TellAlreadyOnList(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE
-       {
-               user->WriteNumeric(957, chan->name, InspIRCd::Format("The word %s is already on the exemptchanops list", word.c_str()));
-       }
-
-       void TellNotSet(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE
-       {
-               user->WriteNumeric(958, chan->name, "No such exemptchanops word is set");
-       }
 };
 
 class ExemptHandler : public CheckExemption::EventListener