| 1 |
/** |
| 2 |
* solidircd.h: This code contains the channel mode definitions for ratbox 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: solidircd.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, /* bahamut +c */ |
| 21 |
CMODE_MODREG = 1 << 13, /* bahamut +M */ |
| 22 |
CMODE_REGONLY = 1 << 14, /* bahamut +R */ |
| 23 |
CMODE_OPERONLY = 1 << 15, /* bahamut +O */ |
| 24 |
|
| 25 |
CMODE_NOCTRL = 1 << 16, |
| 26 |
CMODE_SSL = 1 << 17, |
| 27 |
CMODE_NONICK = 1 << 18, |
| 28 |
CMODE_RSL = 1 << 19, |
| 29 |
|
| 30 |
CMODE_HALFOP = 1 << 20 /* solidircd +h */ |
| 31 |
}; |
| 32 |
|
| 33 |
#endif |