ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/protocol/hyperion.h
Revision: 1.2
Committed: Sat Jul 21 01:29:07 2007 UTC (19 years, 1 month ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -2 lines
Log Message:
- moved to new documentation system
- fixed small build error

File Contents

# User Rev Content
1 pippijn 1.1 /*
2     * Copyright © 2005 William Pitcock, et al.
3 pippijn 1.2 * Rights to this code are as documented in doc/pod/license.pod.
4 pippijn 1.1 *
5     * This code contains the channel mode definitions for ratbox ircd.
6     *
7 pippijn 1.2 * $Id: hyperion.h,v 1.1 2007-07-19 08:24:51 pippijn Exp $
8 pippijn 1.1 */
9    
10     #ifndef RATBOX_H
11     #define RATBOX_H
12    
13    
14     /* Extended channel modes will eventually go here. */
15     #define CMODE_NOCOLOR 0x00001000 /* hyperion +c */
16     #define CMODE_REGONLY 0x00002000 /* hyperion +r */
17     #define CMODE_OPMOD 0x00004000 /* hyperion +z */
18     #define CMODE_FINVITE 0x00008000 /* hyperion +g */
19     #define CMODE_EXLIMIT 0x00010000 /* hyperion +L */
20     #define CMODE_PERM 0x00020000 /* hyperion +P */
21     #define CMODE_DISFWD 0x00080000 /* hyperion +Q */
22     #define CMODE_JUPED 0x00100000 /* hyperion +j */
23     #define CMODE_MODREG 0x00200000 /* hyperion +R */
24    
25     #endif