Changeset

11530:a90389e7296c

mod_tls: Fix order of debug messages and tls context creation Originally added in 5b048ccd106f Merged wrong in ca01c449357f
author Kim Alvefur <zash@zash.se>
date Wed, 05 May 2021 16:25:33 +0200
parents 11528:d3b0049e50f5
children 11531:2bd91d4a0fcf
files plugins/mod_tls.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_tls.lua	Sun Jul 12 23:04:14 2020 +0200
+++ b/plugins/mod_tls.lua	Wed May 05 16:25:33 2021 +0200
@@ -56,15 +56,15 @@
 	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