]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modes/cmode_k.h
Mode merging during FJOIN with ourts==theirts. Only +k and +l have CheckTimestamp...
[user/henk/code/inspircd.git] / include / modes / cmode_k.h
1 #include "mode.h"
2
3 class ModeChannelKey : public ModeHandler
4 {
5  public:
6         ModeChannelKey();
7         ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);
8         std::pair<bool,std::string> ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter);
9         bool CheckTimeStamp(time_t theirs, time_t ours, const std::string &their_param, const std::string &our_param, chanrec* channel);
10 };