mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.sasl: New method to add channel binding handler to a SASL instance.
This commit is contained in:
parent
1fbe88e5c4
commit
0435f611fd
1 changed files with 9 additions and 0 deletions
|
@ -70,6 +70,15 @@ function new(realm, profile)
|
|||
return setmetatable({ profile = profile, realm = realm, mechs = mechanisms }, method);
|
||||
end
|
||||
|
||||
-- add a channel binding handler
|
||||
function method:add_cb_handler(name, f)
|
||||
if type(self.profile.cb) ~= "table" then
|
||||
self.profile.cb = {};
|
||||
end
|
||||
self.profile.cb[name] = f;
|
||||
return self;
|
||||
end
|
||||
|
||||
-- get a fresh clone with the same realm and profile
|
||||
function method:clean_clone()
|
||||
return new(self.realm, self.profile)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue