| Revision: | 1.3 |
| Committed: | Tue Aug 28 17:08:07 2007 UTC (19 years ago) by pippijn |
| Content type: | text/plain |
| Branch: | MAIN |
| Changes since 1.2: | +2 -2 lines |
| Log Message: | - changed name - updated the example config to the new system - added more documentation - enhanced documentation generators - added a link to the pdf to the website - added an RSS feed generator - transitioned hooks to c++ callbacks - did various merges with upstream along the way - added const where appropriate - removed the old block allocator - fixed most memory leaks - transitioned some dictionaries to std::map - transitioned some lists to std::vector - made some free functions members where appropriate - renamed string to dynstr and added a static string ststr - use NOW instead of time (NULL) if possible - completely reworked database backends, crypto handlers and protocol handlers to use an object factory - removed the old module system. ermyth does not do any dynamic loading anymore - fixed most of the build system - reworked how protocol commands work |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | pippijn | 1.1 | /* |
| 2 | pippijn | 1.3 | * 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.3 | * $Id: ptlink.h,v 1.2 2007-07-21 01:29:08 pippijn Exp $ |
| 8 | pippijn | 1.1 | */ |
| 9 | |||
| 10 | #ifndef RATBOX_H | ||
| 11 | #define RATBOX_H | ||
| 12 | |||
| 13 | #define CMODE_FLOOD 0x00000000 /* IGNORE */ | ||
| 14 | |||
| 15 | /* Extended channel modes will eventually go here. */ | ||
| 16 | #define CMODE_NOCOLOR 0x00001000 | ||
| 17 | #define CMODE_NOBOTS 0x00002000 | ||
| 18 | #define CMODE_SSLONLY 0x00004000 | ||
| 19 | #define CMODE_NOREPEAT 0x00008000 | ||
| 20 | #define CMODE_KNOCK 0x00010000 | ||
| 21 | #define CMODE_STICKY 0x00020000 | ||
| 22 | #define CMODE_NOQUIT 0x00040000 | ||
| 23 | #define CMODE_REGONLY 0x00080000 | ||
| 24 | #define CMODE_NOSPAM 0x00100000 | ||
| 25 | |||
| 26 | #define CMODE_PROTECT 0x20000000 /* unreal +a */ | ||
| 27 | #define CMODE_HALFOP 0x40000000 /* unreal +h */ | ||
| 28 | |||
| 29 | #endif |