mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tls: Add debug logging for when TLS should be doable but no ssl context was set
This commit is contained in:
parent
bdeb5cc9c5
commit
3258500edb
1 changed files with 4 additions and 0 deletions
|
@ -79,6 +79,10 @@ local function can_do_tls(session)
|
|||
else
|
||||
return false;
|
||||
end
|
||||
if not session.ssl_ctx then
|
||||
session.log("debug", "Should be able to do TLS but no context available");
|
||||
return false;
|
||||
end
|
||||
return session.ssl_ctx;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue