3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-26 04:32:51 +01:00

ts6: remove SAVE from required capabs

We don't actually send SAVE out to any IRCd, so we don't need to demand that it's supported.

Closes #545.
This commit is contained in:
James Lu 2017-10-22 01:08:30 -07:00
parent 5e7469b56f
commit c636e064e7

View File

@ -35,7 +35,7 @@ class TS6Protocol(TS6BaseProtocol):
# ENCAP LOGIN is used on burst for EUID-less servers # ENCAP LOGIN is used on burst for EUID-less servers
'USERMODE': 'MODE', 'LOGIN': 'CLIENT_SERVICES_LOGIN'} 'USERMODE': 'MODE', 'LOGIN': 'CLIENT_SERVICES_LOGIN'}
self.required_caps = {'SAVE', 'TB', 'ENCAP', 'QS', 'CHW'} self.required_caps = {'TB', 'ENCAP', 'QS', 'CHW'}
# From ChatIRCd: https://github.com/ChatLounge/ChatIRCd/blob/master/doc/technical/ChatIRCd-extra.txt # From ChatIRCd: https://github.com/ChatLounge/ChatIRCd/blob/master/doc/technical/ChatIRCd-extra.txt
# Our command handler rewrites ENCAP so that this is the exact same syntax as MODE. # Our command handler rewrites ENCAP so that this is the exact same syntax as MODE.