diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-13 19:34:55 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-13 19:34:55 +0000 |
commit | 48103a05e75dc208bcd01b62b19ae01158c01b50 (patch) | |
tree | f8977d28183cc1b9d4144a9c73ec05e17910d799 /include/numerics.h | |
parent | 0579cdd300433f232b05aef41e281ea7d0a9bd79 (diff) |
Convertage.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10010 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/numerics.h')
-rw-r--r-- | include/numerics.h | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/include/numerics.h b/include/numerics.h index 79d6fe7dc..2679d7413 100644 --- a/include/numerics.h +++ b/include/numerics.h @@ -26,19 +26,25 @@ enum Numerics /* * Reply range of numerics. */ - RPL_WELCOME = 001, - RPL_YOURHOSTIS = 002, - RPL_SERVERCREATED = 003, - RPL_SERVERVERSION = 004, + RPL_WELCOME = 001, // not RFC, extremely common though + RPL_YOURHOSTIS = 002, // not RFC, extremely common though + RPL_SERVERCREATED = 003, // not RFC, extremely common though + RPL_SERVERVERSION = 004, // not RFC, extremely common though + RPL_ISUPPORT = 005, // not RFC, extremely common though + + RPL_SNOMASKIS = 008, // unrealircd RPL_YOURUUID = 042, // taken from ircnet - RPL_RULES = 232, + RPL_UMODEIS = 221, + RPL_RULES = 232, // unrealircd - RPL_RULESTART = 308, - RPL_RULESEND = 309, + RPL_RULESTART = 308, // unrealircd + RPL_RULESEND = 309, // unrealircd + RPL_CHANNELMODEIS = 324, + RPL_CHANNELCREATED = 329, // ??? RPL_TOPIC = 332, - RPL_TOPICTIME = 333, + RPL_TOPICTIME = 333, // not RFC, extremely common though RPL_NAMREPLY = 353, RPL_ENDOFNAMES = 366, @@ -54,13 +60,15 @@ enum Numerics ERR_NOSUCHNICK = 401, ERR_TOOMANYCHANNELS = 405, ERR_NOMOTD = 422, - ERR_NORULES = 434, + ERR_NORULES = 434, // unrealircd ERR_USERNOTINCHANNEL = 441, ERR_BADCHANNELKEY = 475, ERR_INVITEONLYCHAN = 473, ERR_CHANNELISFULL = 471, ERR_BANNEDFROMCHAN = 474, - ERR_CHANOPRIVSNEEDED = 482, + ERR_NOPRIVILEGES = 481, // rfc, beware though, we use this for other things opers may not do also + ERR_CHANOPRIVSNEEDED = 482, // rfc, beware though, we use this for other things like trying to kick a uline - ERR_UNKNOWNSNOMASK = 501 + ERR_UNKNOWNSNOMASK = 501, // not rfc. unrealircd? + ERR_USERSDONTMATCH = 502 }; |