mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tls: Treat session.ssl_ctx being false as a signal that TLS is disabled
This commit is contained in:
parent
3f9b683457
commit
72dde1c231
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ do
|
|||
end
|
||||
|
||||
local function can_do_tls(session)
|
||||
if not session.conn.starttls then
|
||||
if session.ssl_ctx == false or not session.conn.starttls then
|
||||
return false;
|
||||
elseif session.ssl_ctx then
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue