]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/modes/cmode_h.h
Add timeouts to the http module. Two seperate timeouts, 60 seconds to receive headers...
[user/henk/code/inspircd.git] / include / modes / cmode_h.h
index eaf2149af2b602f76b881fc03a8f50e48ec3b344..d71896a1e2d767c4580b423225651bb2fbd4496c 100644 (file)
@@ -1,14 +1,21 @@
 #include "mode.h"
 #include "channels.h"
 
+class InspIRCd;
+
+/** Channel mode +h
+ */
 class ModeChannelHalfOp : public ModeHandler
 {
  private:
  public:
-       ModeChannelHalfOp();
+       ModeChannelHalfOp(InspIRCd* Instance);
        ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
        std::string AddHalfOp(userrec *user,const char *dest,chanrec *chan,int status);
        std::string DelHalfOp(userrec *user,const char *dest,chanrec *chan,int status);
        ModePair ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter);
+       unsigned int GetPrefixRank();
+       void RemoveMode(chanrec* channel);
+       void RemoveMode(userrec* user);
 };