mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Make sure sasl handler has add_cb_handler (fixes #392)
This commit is contained in:
parent
481aefcb71
commit
4078dc07a2
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ module:hook("stream-features", function(event)
|
|||
if origin.encrypted then
|
||||
-- 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
|
||||
if origin.conn:socket().getpeerfinished and origin.sasl_handler.add_cb_handler then
|
||||
origin.sasl_handler:add_cb_handler("tls-unique", function(self)
|
||||
return self.userdata:getpeerfinished();
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue