1 |
adx |
30 |
/* |
2 |
michael |
2865 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
adx |
30 |
* |
4 |
michael |
2865 |
* Copyright (c) 1997-2014 ircd-hybrid development team |
5 |
adx |
30 |
* |
6 |
|
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
|
* it under the terms of the GNU General Public License as published by |
8 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* This program is distributed in the hope that it will be useful, |
12 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU General Public License |
17 |
|
|
* along with this program; if not, write to the Free Software |
18 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
19 |
|
|
* USA |
20 |
|
|
*/ |
21 |
|
|
|
22 |
michael |
2865 |
/*! \file channel_mode.h |
23 |
|
|
* \brief Includes channel mode related definitions and structures. |
24 |
|
|
* \version $Id$ |
25 |
|
|
*/ |
26 |
adx |
30 |
|
27 |
|
|
#ifndef INCLUDED_channel_mode_h |
28 |
|
|
#define INCLUDED_channel_mode_h |
29 |
|
|
|
30 |
|
|
#define MODEBUFLEN 200 |
31 |
|
|
|
32 |
|
|
/* Maximum mode changes allowed per client, per server is different */ |
33 |
|
|
#define MAXMODEPARAMS 4 |
34 |
|
|
|
35 |
michael |
2896 |
enum |
36 |
|
|
{ |
37 |
|
|
MODE_QUERY = 0, |
38 |
|
|
MODE_ADD = 1, |
39 |
|
|
MODE_DEL = -1 |
40 |
|
|
}; |
41 |
|
|
|
42 |
|
|
enum |
43 |
|
|
{ |
44 |
|
|
CHACCESS_NOTONCHAN = -1, |
45 |
|
|
CHACCESS_PEON = 0, |
46 |
|
|
CHACCESS_HALFOP = 1, |
47 |
|
|
CHACCESS_CHANOP = 2 |
48 |
|
|
}; |
49 |
|
|
|
50 |
adx |
30 |
/* can_send results */ |
51 |
michael |
2896 |
enum |
52 |
|
|
{ |
53 |
|
|
CAN_SEND_NO = 0, |
54 |
|
|
CAN_SEND_NONOP = -1, |
55 |
|
|
CAN_SEND_OPV = -2 |
56 |
|
|
}; |
57 |
adx |
30 |
|
58 |
|
|
|
59 |
|
|
/* Channel related flags */ |
60 |
|
|
#define CHFL_CHANOP 0x0001 /* Channel operator */ |
61 |
|
|
#define CHFL_HALFOP 0x0002 /* Channel half op */ |
62 |
|
|
#define CHFL_VOICE 0x0004 /* the power to speak */ |
63 |
michael |
3695 |
#define CHFL_BAN 0x0008 /* ban channel flag */ |
64 |
|
|
#define CHFL_EXCEPTION 0x0010 /* exception to ban channel flag */ |
65 |
|
|
#define CHFL_INVEX 0x0020 |
66 |
adx |
30 |
|
67 |
|
|
/* channel modes ONLY */ |
68 |
michael |
3533 |
#define MODE_PRIVATE 0x0001 /**< */ |
69 |
|
|
#define MODE_SECRET 0x0002 /**< Channel does not show up on NAMES or LIST */ |
70 |
|
|
#define MODE_MODERATED 0x0004 /**< Users without +v/h/o cannot send text to the channel */ |
71 |
|
|
#define MODE_TOPICLIMIT 0x0008 /**< Only chanops can change the topic */ |
72 |
|
|
#define MODE_INVITEONLY 0x0010 /**< Only invited usersmay join this channel */ |
73 |
|
|
#define MODE_NOPRIVMSGS 0x0020 /**< Users must be in the channel to send text to it */ |
74 |
|
|
#define MODE_SSLONLY 0x0040 /**< Prevents anyone who isn't connected via SSL/TLS from joining the channel */ |
75 |
|
|
#define MODE_OPERONLY 0x0080 /**< Prevents anyone who hasn't obtained IRC operator status from joining the channel */ |
76 |
|
|
#define MODE_REGISTERED 0x0100 /**< Channel has been registered with ChanServ */ |
77 |
|
|
#define MODE_REGONLY 0x0200 /**< Only registered clients may join a channel with that mode set */ |
78 |
|
|
#define MODE_NOCTRL 0x0400 /**< Prevents users from sending messages containing control codes to the channel */ |
79 |
|
|
#define MODE_MODREG 0x0800 /**< Unregistered/unidentified clients cannot send text to the channel */ |
80 |
adx |
30 |
|
81 |
|
|
/* cache flags for silence on ban */ |
82 |
|
|
#define CHFL_BAN_CHECKED 0x0080 |
83 |
|
|
#define CHFL_BAN_SILENCED 0x0100 |
84 |
|
|
|
85 |
|
|
/* name invisible */ |
86 |
|
|
#define SecretChannel(x) (((x)->mode.mode & MODE_SECRET)) |
87 |
michael |
2902 |
#define PubChannel(x) (((x)->mode.mode & (MODE_PRIVATE | MODE_SECRET)) == 0) |
88 |
michael |
3707 |
/* knock is forbidden, halfops can't kick/deop other halfops. */ |
89 |
adx |
30 |
#define PrivateChannel(x) (((x)->mode.mode & MODE_PRIVATE)) |
90 |
|
|
|
91 |
michael |
3753 |
struct ChannelMode |
92 |
|
|
{ |
93 |
|
|
void (*func)(struct Client *, |
94 |
|
|
struct Channel *, int, int *, char **, |
95 |
|
|
int *, int, int, char, unsigned int); |
96 |
|
|
unsigned int d; |
97 |
|
|
}; |
98 |
|
|
|
99 |
adx |
30 |
struct ChModeChange |
100 |
|
|
{ |
101 |
|
|
char letter; |
102 |
|
|
const char *arg; |
103 |
|
|
const char *id; |
104 |
|
|
int dir; |
105 |
|
|
int mems; |
106 |
|
|
}; |
107 |
|
|
|
108 |
michael |
1175 |
struct mode_letter |
109 |
|
|
{ |
110 |
|
|
const unsigned int mode; |
111 |
|
|
const unsigned char letter; |
112 |
|
|
}; |
113 |
|
|
|
114 |
|
|
extern const struct mode_letter chan_modes[]; |
115 |
michael |
3754 |
extern const struct ChannelMode ModeTable[]; |
116 |
michael |
2937 |
|
117 |
michael |
3044 |
extern int add_id(struct Client *, struct Channel *, char *, unsigned int); |
118 |
michael |
3150 |
extern void set_channel_mode(struct Client *, struct Channel *, |
119 |
michael |
2937 |
struct Membership *, int, char **); |
120 |
adx |
30 |
extern void clear_ban_cache(struct Channel *); |
121 |
michael |
759 |
extern void clear_ban_cache_client(struct Client *); |
122 |
adx |
30 |
#endif /* INCLUDED_channel_mode_h */ |