mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_tls: Return session.ssl_ctx if not nil, like when doing the full session type check
This commit is contained in:
parent
3258500edb
commit
c7da30f634
1 changed files with 3 additions and 3 deletions
|
@ -62,10 +62,10 @@ do
|
|||
end
|
||||
|
||||
local function can_do_tls(session)
|
||||
if session.ssl_ctx == false or not session.conn.starttls then
|
||||
if session.ssl_ctx ~= nil then
|
||||
return session.ssl_ctx;
|
||||
elseif not session.conn.starttls then
|
||||
return false;
|
||||
elseif session.ssl_ctx then
|
||||
return true;
|
||||
end
|
||||
if session.type == "c2s_unauthed" then
|
||||
session.ssl_ctx = ssl_ctx_c2s;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue