mod_tls: Add debug logging for when TLS should be doable but no ssl context was set

This commit is contained in:
Kim Alvefur 2017-01-25 11:06:30 +01:00
parent bdeb5cc9c5
commit 3258500edb

View file

@ -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