blob: 4c52e644334033a3ef14d92ab6bc04c8837f4d42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "mode.h"
class InspIRCd;
/** Channel mode +k
*/
class ModeChannelKey : public ModeHandler
{
public:
ModeChannelKey(InspIRCd* Instance);
ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding);
ModePair ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string ¶meter);
bool CheckTimeStamp(time_t theirs, time_t ours, const std::string &their_param, const std::string &our_param, chanrec* channel);
};
|