1
mirror of git://git.acid.vegas/IRCP.git synced 2024-11-22 16:06:41 +00:00

Added catch KILL messages, 405 (ERR_TOOMANYCHANNELS), & 451 (ERR_NOTREGISTERED) numerics

This commit is contained in:
Dionysus 2023-05-30 03:51:56 -04:00
parent e5fb155c2e
commit d7950e3ee4
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

View File

@ -55,6 +55,7 @@ snapshot = {
'ssl' : False, 'ssl' : False,
'raw' : [], # all other data goes in here 'raw' : [], # all other data goes in here
'CAP' : None, 'CAP' : None,
'KILL', : None, # TODO: currently does not verify it was us being killed
'NOTICE' : None, 'NOTICE' : None,
# server information # server information
@ -102,6 +103,7 @@ snapshot = {
# bad channel numerics # bad channel numerics
'439' : None, # ERR_TARGETTOOFAST '439' : None, # ERR_TARGETTOOFAST
'405' : None, # ERR_TOOMANYCHANNELS (TODO: Maybe reference MAXCHANNELS= in 005 responses)
'470' : None, # ERR_LINKCHANNEL '470' : None, # ERR_LINKCHANNEL
'471' : None, # ERR_CHANNELISFULL '471' : None, # ERR_CHANNELISFULL
'473' : None, # ERR_INVITEONLYCHAN '473' : None, # ERR_INVITEONLYCHAN