mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +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
|
||||
origin.sasl_handler = usermanager_get_sasl_handler(module.host);
|
||||
if origin.secure then
|
||||
origin.sasl_handler:add_cb_handler("tls-unique", function(self)
|
||||
return self.userdata:getpeerfinished();
|
||||
end);
|
||||
origin.sasl_handler["userdata"] = origin.conn:socket();
|
||||
-- check wether LuaSec has the nifty binding to the function needed for tls-unique
|
||||
-- FIXME: would be nice to have this check only once and not for every socket
|
||||
if origin.conn:socket().getpeerfinished then
|
||||
origin.sasl_handler:add_cb_handler("tls-unique", function(self)
|
||||
return self.userdata:getpeerfinished();
|
||||
end);
|
||||
origin.sasl_handler["userdata"] = origin.conn:socket();
|
||||
end
|
||||
end
|
||||
features:tag("mechanisms", mechanisms_attr);
|
||||
for mechanism in pairs(origin.sasl_handler:mechanisms()) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue