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 | c89ca6cad504e083f310f82177d32dea0e25f462 (patch) | |
tree | a1508dfb8b4c8e26f5c780c4c08dc2bbdb8f9557 /plugins/mod_saslauth.lua | |
parent | 5178a1e79fed67890c26d0f9a052c70b6a36b5a6 (diff) | |
download | prosody-c89ca6cad504e083f310f82177d32dea0e25f462.tar.gz prosody-c89ca6cad504e083f310f82177d32dea0e25f462.zip |
mod_saslauth: Collect data for channel binding only if we know for sure that the stream is encrypted
Diffstat (limited to 'plugins/mod_saslauth.lua')
-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 |