]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/numerics.h
More conversion, and a note to client coders.
[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_WELCOME                                             =       001, // not RFC, extremely common though
30         RPL_YOURHOSTIS                                  =       002, // not RFC, extremely common though
31         RPL_SERVERCREATED                               =       003, // not RFC, extremely common though
32         RPL_SERVERVERSION                               =       004, // not RFC, extremely common though
33         RPL_ISUPPORT                                    =       005, // not RFC, extremely common though
34
35         RPL_SNOMASKIS                                   =       008, // unrealircd
36
37         RPL_YOURUUID                                    =       042, // taken from ircnet
38
39         RPL_UMODEIS                                             =       221,
40         RPL_RULES                                               =       232, // unrealircd
41
42         RPL_RULESTART                                   =       308, // unrealircd
43         RPL_RULESEND                                    =       309, // unrealircd
44         RPL_CHANNELMODEIS                               =       324,
45         RPL_CHANNELCREATED                              =       329, // ???
46         RPL_TOPIC                                               =       332,
47         RPL_TOPICTIME                                   =       333, // not RFC, extremely common though
48         RPL_NAMREPLY                                    =       353,
49         RPL_ENDOFNAMES                                  =       366,
50
51         RPL_MOTD                                                =       372,
52         RPL_MOTDSTART                                   =       375,
53         RPL_ENDOFMOTD                                   =       376,
54
55         RPL_YOURDISPLAYEDHOST                   =       396, // from charybdis/etc, common convention
56
57         /*
58          * Error range of numerics.
59          */
60         ERR_NOSUCHNICK                                  =       401,
61         ERR_TOOMANYCHANNELS                             =       405,
62         ERR_UNKNOWNCOMMAND                              =       421,
63         ERR_NOMOTD                                              =       422,
64         ERR_NORULES                                             =       434, // unrealircd
65         ERR_USERNOTINCHANNEL                    =       441,
66         ERR_NOTREGISTERED                               =       451,
67         ERR_NEEDMOREPARAMS                              =       461,
68
69         /*
70          * A quick side-rant about the next group of numerics..
71          * There are clients out there that like to assume that just because they don't recieve a numeric
72          * they know, that they have joined the channel.
73          *
74          * If IRC was at all properly standardised, this may even be a semi-acceptable assumption to make,
75          * but that's not the case as we all know, so IT IS NOT ACCEPTABLE. Especially for Insp users, where
76          * differing modules MAY potentially choose to block joins and send NOTICEs or other text to the user
77          * instead!
78          *
79          * tl;dr version:
80          *   DON'T MAKE YOUR CLIENT ASSUME YOU JOINED UNLESS YOU RECIEVE A JOIN WITH YOUR DAMN NICK ON IT.
81          * Thanks.
82          *
83          *  -- A message from the IRC group for coder sanity, and w00t
84          */
85         ERR_BADCHANNELKEY                               =       475,
86         ERR_INVITEONLYCHAN                              =       473,
87         ERR_CHANNELISFULL                               =       471,
88         ERR_BANNEDFROMCHAN                              =       474,
89
90         ERR_NOPRIVILEGES                                =       481, // rfc, beware though, we use this for other things opers may not do also
91         ERR_CHANOPRIVSNEEDED                    =       482, // rfc, beware though, we use this for other things like trying to kick a uline
92
93         ERR_UNKNOWNSNOMASK                              =       501, // not rfc. unrealircd?
94         ERR_USERSDONTMATCH                              =       502,
95
96         ERR_CANTUNLOADMODULE                    =       972, // insp-specific
97         RPL_UNLOADEDMODULE                              =       973, // insp-specific
98         ERR_CANTLOADMODULE                              =       974, // insp-specific
99         RPL_LOADEDMODULE                                =       975 // insp-specific
100 };