mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_tls: Log reasons for not being able to do TLS
This commit is contained in:
parent
bb3a3dfe97
commit
a193e1d9f4
1 changed files with 2 additions and 0 deletions
|
@ -63,6 +63,7 @@ end
|
|||
|
||||
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 @@ local function can_do_tls(session)
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue