ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/protocol/nefarious.h
Revision: 1.4
Committed: Sun Sep 16 18:54:42 2007 UTC (16 years, 8 months ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +30 -23 lines
Log Message:
#defines to enum

File Contents

# Content
1 /**
2 * nefarious.h: This code contains the channel mode definitions for ircnet ircd.
3 *
4 * Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team
5 * Rights to this code are as documented in COPYING.
6 *
7 *
8 * Portions of this file were derived from sources bearing the following license:
9 * Copyright © 2005 William Pitcock, et al.
10 * Rights to this code are as documented in doc/pod/license.pod.
11 *
12 * $Id: nefarious.h,v 1.3 2007-08-28 17:08:07 pippijn Exp $
13 */
14
15 #ifndef RATBOX_H
16 #define RATBOX_H
17
18 enum
19 {
20 CMODE_NOCOLOR = 1 << 12,
21 CMODE_NOCTCP = 1 << 13,
22 CMODE_DELAYED = 1 << 14,
23 CMODE_AUDITORIUM = 1 << 15,
24 CMODE_NOQUIT = 1 << 16,
25 CMODE_NONOTICE = 1 << 17,
26 CMODE_ADMONLY = 1 << 18,
27 CMODE_SOFTMOD = 1 << 19,
28 CMODE_REGONLY = 1 << 20,
29 CMODE_PERM = 1 << 21,
30 CMODE_STRIP = 1 << 22,
31 CMODE_NOAMSG = 1 << 23,
32 CMODE_OPERONLY = 1 << 24,
33 CMODE_SOFTPRIV = 1 << 25,
34 CMODE_SSLONLY = 1 << 26,
35
36 CMODE_HALFOP = 1 << 27
37 };
38
39 #endif
40