Add Client.join, show join errors in popup
This commit is contained in:
parent
fc8aa30756
commit
05f7c6e9fe
3 changed files with 36 additions and 2 deletions
|
@ -34,6 +34,8 @@ export const RPL_MOTDSTART = "375";
|
|||
export const RPL_ENDOFMOTD = "376";
|
||||
export const ERR_UNKNOWNERROR = "400";
|
||||
export const ERR_NOSUCHNICK = "401";
|
||||
export const ERR_NOSUCHCHANNEL = "403";
|
||||
export const ERR_TOOMANYCHANNELS = "405";
|
||||
export const ERR_UNKNOWNCOMMAND = "421";
|
||||
export const ERR_NOMOTD = "422";
|
||||
export const ERR_ERRONEUSNICKNAME = "432";
|
||||
|
@ -43,6 +45,10 @@ export const ERR_NEEDMOREPARAMS = "461";
|
|||
export const ERR_NOPERMFORHOST = "463";
|
||||
export const ERR_PASSWDMISMATCH = "464";
|
||||
export const ERR_YOUREBANNEDCREEP = "465";
|
||||
export const ERR_CHANNELISFULL = "471";
|
||||
export const ERR_INVITEONLYCHAN = "473";
|
||||
export const ERR_BANNEDFROMCHAN = "474";
|
||||
export const ERR_BADCHANNELKEY = "475";
|
||||
// RFC 2812
|
||||
export const ERR_UNAVAILRESOURCE = "437";
|
||||
// Other
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue