aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-01-27 12:21:09 +0100
committerKim Alvefur <zash@zash.se>2017-01-27 12:21:09 +0100
commit8ee33e543a323a86867e28a68be8c2c542f261c3 (patch)
treed91895570e98cb55c4238a6ab9f3521ae997d068
parente18117b8f9bffb05582ff610f0bd011d54a94c33 (diff)
downloadprosody-8ee33e543a323a86867e28a68be8c2c542f261c3.tar.gz
prosody-8ee33e543a323a86867e28a68be8c2c542f261c3.zip
mod_tls: Check that connection has starttls method first to prevent offering starttls over tls (thanks Remko and Tobias)
-rw-r--r--plugins/mod_tls.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua
index c5903b61..2b265032 100644
--- a/plugins/mod_tls.lua
+++ b/plugins/mod_tls.lua
@@ -62,10 +62,10 @@ do
end
local function can_do_tls(session)
- if session.ssl_ctx ~= nil then
- return session.ssl_ctx;
- elseif not session.conn.starttls then
+ if not session.conn.starttls then
return false;
+ elseif session.ssl_ctx ~= nil then
+ return session.ssl_ctx;
end
if session.type == "c2s_unauthed" then
session.ssl_ctx = ssl_ctx_c2s;