diff options
| author | 2024-10-26 15:26:59 +0100 | |
|---|---|---|
| committer | 2024-10-26 15:26:59 +0100 | |
| commit | 414a08644944e73338a65f8d877bfbb94c72ceb6 (patch) | |
| tree | 20ec2ba0e7bb8823bf58ca633d2fa64a4b1ddc87 /include | |
| parent | Skip ciphersuites that don't have any users. (diff) | |
All core numerics should be in numeric.h not in .cpp files.
Diffstat (limited to 'include')
| -rw-r--r-- | include/numeric.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/numeric.h b/include/numeric.h index 558f71171..fad86e316 100644 --- a/include/numeric.h +++ b/include/numeric.h @@ -39,8 +39,11 @@ enum ERR_UNKNOWNCOMMAND = 421, ERR_NONICKNAMEGIVEN = 431, ERR_ERRONEUSNICKNAME = 432, + ERR_NICKNAMEINUSE = 433, ERR_USERNOTINCHANNEL = 441, ERR_NOTONCHANNEL = 442, + ERR_NOTREGISTERED = 451, + ERR_NEEDMOREPARAMS = 461, ERR_YOUREBANNEDCREEP = 465, ERR_UNKNOWNMODE = 472, ERR_BANNEDFROMCHAN = 474, @@ -58,11 +61,17 @@ enum // From irc2? RPL_SAVENICK = 43, + // From ircu. + RPL_YOURDISPLAYEDHOST = 396, + // From UnrealIRCd. ERR_CANTCHANGENICK = 447, // InspIRCd-specific. ERR_UNKNOWNSNOMASK = 501, + RPL_SYNTAX = 650, + ERR_LISTMODEALREADYSET = 697, + ERR_LISTMODENOTSET = 698, ERR_CANTUNLOADMODULE = 972, RPL_UNLOADEDMODULE = 973, ERR_CANTLOADMODULE = 974, |
