mod_saslauth: Check whether LuaSec supports getpeerfinished() binding.

This commit is contained in:
Tobias Markmann 2011-01-17 16:50:21 +01:00
parent bd085514c5
commit d07446041f

View file

@ -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