mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tls: Rebuild SSL context objects on configuration reload - #701
This commit is contained in:
parent
34a3e7327e
commit
f0abacc215
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue