Mercurial > prosody-hg
diff plugins/mod_tls.lua @ 7900:41f783d4e127
Merge 0.10->trunk
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Wed, 15 Feb 2017 23:05:03 +0100 |
| parents | d8029b2e0f43 |
| children | 64daa21450f9 |
line wrap: on
line diff
--- a/plugins/mod_tls.lua Tue Feb 14 23:42:11 2017 +0100 +++ b/plugins/mod_tls.lua Wed Feb 15 23:05:03 2017 +0100 @@ -63,6 +63,7 @@ local function can_do_tls(session) if not session.conn.starttls then + session.log("debug", "Underlying connection does not support STARTTLS"); return false; elseif session.ssl_ctx ~= nil then return session.ssl_ctx; @@ -77,6 +78,7 @@ session.ssl_ctx = ssl_ctx_s2sout; session.ssl_cfg = ssl_cfg_s2sout; else + session.log("debug", "Unknown session type, don't know which TLS context to use"); return false; end if not session.ssl_ctx then
