mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tls: Suppress debug message if already using encryption
This commit is contained in:
parent
fdea58765a
commit
3405d89baa
1 changed files with 3 additions and 1 deletions
|
@ -63,7 +63,9 @@ end
|
|||
|
||||
local function can_do_tls(session)
|
||||
if not session.conn.starttls then
|
||||
session.log("debug", "Underlying connection does not support STARTTLS");
|
||||
if not session.secure then
|
||||
session.log("debug", "Underlying connection does not support STARTTLS");
|
||||
end
|
||||
return false;
|
||||
elseif session.ssl_ctx ~= nil then
|
||||
return session.ssl_ctx;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue