/usr/include/ircd-hybrid-8/channel_mode.h is in hybrid-dev 1:8.2.12+dfsg.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | /*
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
*
* Copyright (c) 1997-2016 ircd-hybrid development team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*/
/*! \file channel_mode.h
* \brief Includes channel mode related definitions and structures.
* \version $Id: channel_mode.h 7007 2016-01-01 00:09:08Z michael $
*/
#ifndef INCLUDED_channel_mode_h
#define INCLUDED_channel_mode_h
#define CMEMBER_STATUS_FLAGS "@%+"
enum { CMEMBER_STATUS_FLAGS_LEN = sizeof(CMEMBER_STATUS_FLAGS) - 1 };
enum { MODEBUFLEN = 200 };
/* Maximum mode changes allowed per client, per server is different */
enum { MAXMODEPARAMS = 6 };
enum
{
MODE_QUERY = 0,
MODE_ADD = 1,
MODE_DEL = -1
};
enum
{
CHACCESS_NOTONCHAN = -1,
CHACCESS_PEON = 0,
CHACCESS_HALFOP = 1,
CHACCESS_CHANOP = 2,
CHACCESS_REMOTE = 3
};
/* can_send results */
enum
{
CAN_SEND_NO = 0,
CAN_SEND_NONOP = -1,
CAN_SEND_OPV = -2
};
/* Channel related flags */
enum
{
CHFL_CHANOP = 0x00000001U, /* Channel operator */
CHFL_HALFOP = 0x00000002U, /* Channel half op */
CHFL_VOICE = 0x00000004U, /* the power to speak */
CHFL_BAN = 0x00000008U, /* ban channel flag */
CHFL_EXCEPTION = 0x00000010U, /* exception to ban channel flag */
CHFL_INVEX = 0x00000020U,
/* Cache flags for silence on ban */
CHFL_BAN_CHECKED = 0x00000040U,
CHFL_BAN_SILENCED = 0x00000080U
};
/* channel modes ONLY */
enum
{
MODE_PRIVATE = 0x00000001U, /**< */
MODE_SECRET = 0x00000002U, /**< Channel does not show up on NAMES or LIST */
MODE_MODERATED = 0x00000004U, /**< Users without +v/+h/+o cannot send text to the channel */
MODE_TOPICLIMIT = 0x00000008U, /**< Only chanops can change the topic */
MODE_INVITEONLY = 0x00000010U, /**< Only invited users may join this channel */
MODE_NOPRIVMSGS = 0x00000020U, /**< Users must be in the channel to send text to it */
MODE_SSLONLY = 0x00000040U, /**< Prevents anyone who isn't connected via SSL/TLS from joining the channel */
MODE_OPERONLY = 0x00000080U, /**< Prevents anyone who hasn't obtained IRC operator status from joining the channel */
MODE_REGISTERED = 0x00000100U, /**< Channel has been registered with ChanServ */
MODE_REGONLY = 0x00000200U, /**< Only registered clients may join a channel with that mode set */
MODE_NOCTRL = 0x00000400U, /**< Prevents users from sending messages containing control codes to the channel */
MODE_MODREG = 0x00000800U, /**< Unregistered/unidentified clients cannot send text to the channel */
MODE_NOCTCP = 0x00001000U, /**< Clients cannot send CTCP messages to the channel */
MODE_NONOTICE = 0x00002000U /**< Clients cannot send NOTICE to the channel */
};
/* name invisible */
#define SecretChannel(x) (((x)->mode.mode & MODE_SECRET))
#define PubChannel(x) (((x)->mode.mode & (MODE_PRIVATE | MODE_SECRET)) == 0)
/* knock is forbidden, halfops can't kick/deop other halfops. */
#define PrivateChannel(x) (((x)->mode.mode & MODE_PRIVATE))
struct ChannelMode
{
void (*func)(struct Client *,
struct Channel *, int, int *, char **,
int *, int, int, char, unsigned int);
unsigned int d;
};
struct ChModeChange
{
char letter;
const char *arg;
const char *id;
int dir;
};
struct mode_letter
{
const unsigned int mode;
const unsigned char letter;
};
extern const struct mode_letter chan_modes[];
extern const struct ChannelMode ModeTable[];
extern int add_id(struct Client *, struct Channel *, char *, unsigned int);
extern void set_channel_mode(struct Client *, struct Channel *,
struct Membership *, int, char **);
extern void clear_ban_cache_channel(struct Channel *);
extern void clear_ban_cache_client(struct Client *);
#endif /* INCLUDED_channel_mode_h */
|