]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/numerics.h
6a587a5b3519bbf6f34ecfa9e47a72e923a6ff3e
[user/henk/code/inspircd.git] / include / numerics.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /*
15  * This file is aimed providing a string that is easier to use than using the numeric
16  * directly.
17  *
18  * Thanks to Darom, jackmcbarn and Brain for suggesting and discussing this.
19  *
20  * Please note that the list may not be exhaustive, it'll be done when I have
21  * nothing better to do with my time. -- w00t (jul 13, 2008)
22  */
23
24 enum Numerics
25 {
26         /*
27          * Reply range of numerics.
28          */
29         RPL_TOPIC                                               =       332,
30         RPL_TOPICTIME                                   =       333,
31
32
33         /*
34          * Error range of numerics.
35          */
36         ERR_TOOMANYCHANNELS                             =       405,
37         ERR_BADCHANNELKEY                               =       475,
38         ERR_INVITEONLYCHAN                              =       473,
39         ERR_CHANNELISFULL                               =       471,
40         ERR_BANNEDFROMCHAN                              =       474
41 };