aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2025-03-06 13:34:55 +0000
committerMatthew Wild <mwild1@gmail.com>2025-03-06 13:34:55 +0000
commit53774a42348c2a8467f805d5dd7d34913937262f (patch)
treea59fc611ad32bb69cc519956dd6cc5b05b701088
parent9f9cc1ea09f6bc7e0c011f3497a699cb64402a37 (diff)
parent86341e87d3402cfdd2f3fc9f39bd7d947ac99c17 (diff)
downloadprosody-master.tar.gz
prosody-master.zip
Merge 13.0->trunkHEADorigin/mastermaster
-rw-r--r--util/sasl.lua11
1 files changed, 8 insertions, 3 deletions
diff --git a/util/sasl.lua b/util/sasl.lua
index c3c22a1c..dc11d426 100644
--- a/util/sasl.lua
+++ b/util/sasl.lua
@@ -67,7 +67,7 @@ local function registerMechanism(name, backends, f, cb_backends)
end
-- 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;
if not mechanisms then
mechanisms = {};
@@ -80,7 +80,12 @@ local function new(realm, profile)
end
profile.mechanisms = mechanisms;
end
- return setmetatable({ profile = profile, realm = realm, mechs = mechanisms }, method);
+ return setmetatable({
+ profile = profile,
+ realm = realm,
+ mechs = mechanisms,
+ userdata = userdata
+ }, method);
end
-- add a channel binding handler
@@ -94,7 +99,7 @@ end
-- get a fresh clone with the same realm and profile
function method:clean_clone()
- return new(self.realm, self.profile)
+ return new(self.realm, self.profile, self.userdata)
end
-- get a list of possible SASL mechanisms to use