mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_saslauth: Check whether LuaSec supports getpeerfinished() binding.
This commit is contained in:
parent
bd085514c5
commit
d07446041f
1 changed files with 8 additions and 4 deletions
|
@ -247,10 +247,14 @@ module:hook("stream-features", function(event)
|
||||||
end
|
end
|
||||||
origin.sasl_handler = usermanager_get_sasl_handler(module.host);
|
origin.sasl_handler = usermanager_get_sasl_handler(module.host);
|
||||||
if origin.secure then
|
if origin.secure then
|
||||||
origin.sasl_handler:add_cb_handler("tls-unique", function(self)
|
-- check wether LuaSec has the nifty binding to the function needed for tls-unique
|
||||||
return self.userdata:getpeerfinished();
|
-- FIXME: would be nice to have this check only once and not for every socket
|
||||||
end);
|
if origin.conn:socket().getpeerfinished then
|
||||||
origin.sasl_handler["userdata"] = origin.conn:socket();
|
origin.sasl_handler:add_cb_handler("tls-unique", function(self)
|
||||||
|
return self.userdata:getpeerfinished();
|
||||||
|
end);
|
||||||
|
origin.sasl_handler["userdata"] = origin.conn:socket();
|
||||||
|
end
|
||||||
end
|
end
|
||||||
features:tag("mechanisms", mechanisms_attr);
|
features:tag("mechanisms", mechanisms_attr);
|
||||||
for mechanism in pairs(origin.sasl_handler:mechanisms()) do
|
for mechanism in pairs(origin.sasl_handler:mechanisms()) do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue