mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
controllers: Add supported SASL mechanism lists
This commit is contained in:
@ -23,6 +23,8 @@ class LimnoriaController(BaseClientController, DirectoryBasedController):
|
||||
pass
|
||||
with self.open_file('conf/users.conf'):
|
||||
pass
|
||||
self.supported_sasl_mechanisms = [
|
||||
'PLAIN', 'ECDSA-NIST256P-CHALLENGE', 'EXTERNAL']
|
||||
|
||||
def run(self, hostname, port, auth):
|
||||
# Runs a client with the config given as arguments
|
||||
|
@ -22,6 +22,7 @@ class SopelController(BaseClientController):
|
||||
super().__init__()
|
||||
self.filename = next(tempfile._get_candidate_names()) + '.cfg'
|
||||
self.proc = None
|
||||
self.supported_sasl_mechanisms = ['PLAIN']
|
||||
def kill(self):
|
||||
if self.proc:
|
||||
self.proc.kill()
|
||||
|
Reference in New Issue
Block a user