]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modes/cmode_t.h
Add timeouts to the http module. Two seperate timeouts, 60 seconds to receive headers...
[user/henk/code/inspircd.git] / include / modes / cmode_t.h
1 #include "mode.h"
2
3 class InspIRCd;
4
5 /** Channel mode +t
6  */
7 class ModeChannelTopicOps : public ModeHandler
8 {
9  public:
10         ModeChannelTopicOps(InspIRCd* Instance);
11         ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
12 };