mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_tls: Fix order of debug messages and tls context creation
Originally added in 5b048ccd106f Merged wrong in ca01c449357f
This commit is contained in:
parent
4979dc730a
commit
02cead40db
1 changed files with 2 additions and 2 deletions
|
@ -56,15 +56,15 @@ function module.load(reload)
|
|||
module:log("debug", "Creating context for c2s");
|
||||
local request_client_certs = { verify = { "peer", "client_once", }; };
|
||||
|
||||
module:log("debug", "Creating context for s2sout");
|
||||
ssl_ctx_c2s, err_c2s, ssl_cfg_c2s = create_context(host.host, "server", host_c2s, host_ssl, global_c2s); -- for incoming client connections
|
||||
if not ssl_ctx_c2s then module:log("error", "Error creating context for c2s: %s", err_c2s); end
|
||||
|
||||
module:log("debug", "Creating context for s2sin");
|
||||
module:log("debug", "Creating context for s2sout");
|
||||
-- for outgoing server connections
|
||||
ssl_ctx_s2sout, err_s2sout, ssl_cfg_s2sout = create_context(host.host, "client", host_s2s, host_ssl, global_s2s, request_client_certs);
|
||||
if not ssl_ctx_s2sout then module:log("error", "Error creating contexts for s2sout: %s", err_s2sout); end
|
||||
|
||||
module:log("debug", "Creating context for s2sin");
|
||||
-- for incoming server connections
|
||||
ssl_ctx_s2sin, err_s2sin, ssl_cfg_s2sin = create_context(host.host, "server", host_s2s, host_ssl, global_s2s, request_client_certs);
|
||||
if not ssl_ctx_s2sin then module:log("error", "Error creating contexts for s2sin: %s", err_s2sin); end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue