Merge 13.0->trunk

This commit is contained in:
Matthew Wild 2025-03-06 13:34:55 +00:00
commit 53774a4234

View file

@ -67,7 +67,7 @@ local function registerMechanism(name, backends, f, cb_backends)
end end
-- create a new SASL object which can be used to authenticate clients -- create a new SASL object which can be used to authenticate clients
local function new(realm, profile) local function new(realm, profile, userdata)
local mechanisms = profile.mechanisms; local mechanisms = profile.mechanisms;
if not mechanisms then if not mechanisms then
mechanisms = {}; mechanisms = {};
@ -80,7 +80,12 @@ local function new(realm, profile)
end end
profile.mechanisms = mechanisms; profile.mechanisms = mechanisms;
end end
return setmetatable({ profile = profile, realm = realm, mechs = mechanisms }, method); return setmetatable({
profile = profile,
realm = realm,
mechs = mechanisms,
userdata = userdata
}, method);
end end
-- add a channel binding handler -- add a channel binding handler
@ -94,7 +99,7 @@ end
-- get a fresh clone with the same realm and profile -- get a fresh clone with the same realm and profile
function method:clean_clone() function method:clean_clone()
return new(self.realm, self.profile) return new(self.realm, self.profile, self.userdata)
end end
-- get a list of possible SASL mechanisms to use -- get a list of possible SASL mechanisms to use