diff options
author | Kim Alvefur <zash@zash.se> | 2013-10-07 12:56:21 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-10-07 12:56:21 +0200 |
commit | 913e2225b5dcf1baf7d623122046da4f27766a04 (patch) | |
tree | a1508dfb8b4c8e26f5c780c4c08dc2bbdb8f9557 | |
parent | cddbe637e070bfe60bcc81eaaec8d4284ef5b05f (diff) | |
download | prosody-913e2225b5dcf1baf7d623122046da4f27766a04.tar.gz prosody-913e2225b5dcf1baf7d623122046da4f27766a04.zip |
mod_saslauth: Collect data for channel binding only if we know for sure that the stream is encrypted
-rw-r--r-- | plugins/mod_saslauth.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua index f24eacf8..4513c511 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -242,7 +242,7 @@ module:hook("stream-features", function(event) return; end origin.sasl_handler = usermanager_get_sasl_handler(module.host, origin); - if origin.secure then + 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 |