limnoria: add support for STS.

This commit is contained in:
Valentin Lorentz 2021-02-14 22:22:01 +01:00
parent 28f1ceb4e6
commit e45a1fb9db
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ class LimnoriaController(BaseClientController, DirectoryBasedController):
supported_sasl_mechanisms = { supported_sasl_mechanisms = {
'PLAIN', 'ECDSA-NIST256P-CHALLENGE', 'SCRAM-SHA-256', 'EXTERNAL', 'PLAIN', 'ECDSA-NIST256P-CHALLENGE', 'SCRAM-SHA-256', 'EXTERNAL',
} }
supported_capabilities = set() # Not exhaustive supported_capabilities = set(['sts']) # Not exhaustive
def create_config(self): def create_config(self):
create_config = super().create_config() create_config = super().create_config()

View File

@ -24,7 +24,7 @@ class SopelController(BaseClientController):
supported_sasl_mechanisms = { supported_sasl_mechanisms = {
'PLAIN', 'PLAIN',
} }
supported_caps = set() # Not exhaustive supported_capabilities = set() # Not exhaustive
def __init__(self, test_config): def __init__(self, test_config):
super().__init__(test_config) super().__init__(test_config)