mod_tls: Rebuild SSL context objects on configuration reload - #701

This commit is contained in:
Kim Alvefur 2017-04-25 21:50:36 +02:00
parent 34a3e7327e
commit f0abacc215

View file

@ -35,7 +35,8 @@ local host = hosts[module.host];
local ssl_ctx_c2s, ssl_ctx_s2sout, ssl_ctx_s2sin;
local ssl_cfg_c2s, ssl_cfg_s2sout, ssl_cfg_s2sin;
do
function module.load()
local NULL, err = {};
local modhost = module.host;
local parent = modhost:match("%.(.*)$");
@ -61,6 +62,8 @@ do
if not ssl_ctx_s2sin then module:log("error", "Error creating contexts for s2sin: %s", err); end
end
module:hook_global("config-reloaded", module.load);
local function can_do_tls(session)
if not session.conn.starttls then
if not session.secure then