ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/protocol/officeirc.h
Revision: 1.1
Committed: Thu Jul 19 08:24:51 2007 UTC (19 years, 2 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Log Message:
initial import. the most important changes since Atheme are:
- fixed many memory leaks
- fixed many bugs
- converted to C++ and use more STL containers
- added a (not very enhanced yet) perl module
- greatly improved XML-RPC speed
- added a JSON-RPC module with code from json-cpp
- added a valgrind memcheck module to operserv
- added a more object oriented base64 implementation
- added a specialised unit test framework
- improved stability
- use gettimeofday() if available
- reworked adding/removing commands
- MemoServ IGNORE DEL can now remove indices

File Contents

# User Rev Content
1 pippijn 1.1 /*
2     * Copyright © 2005 William Pitcock, et al.
3     * Rights to this code are as documented in doc/LICENSE.
4     *
5     * This code contains the channel mode definitions for ratbox ircd.
6     *
7     * $Id: officeirc.h 7687 2007-02-18 00:47:15Z nenolod $
8     */
9    
10     #ifndef RATBOX_H
11     #define RATBOX_H
12    
13    
14     /* Extended channel modes will eventually go here. */
15     #define CMODE_NOCOLOR 0x00001000 /* bahamut +c */
16     #define CMODE_MODREG 0x00002000 /* bahamut +M */
17     #define CMODE_REGONLY 0x00004000 /* bahamut +R */
18     #define CMODE_OPERONLY 0x00008000 /* bahamut +O */
19    
20     #define CMODE_OWNER 0x10000000 /* unreal +q */
21     #define CMODE_PROTECT 0x20000000 /* unreal +a */
22     #define CMODE_HALFOP 0x40000000 /* unreal +h */
23    
24     #endif