Diff

plugins/mod_tls.lua @ 9975:ca01c449357f

Merge 0.11->trunk
author Kim Alvefur <zash@zash.se>
date Wed, 24 Apr 2019 18:06:48 +0200
parent 9854:115b5e32d960
parent 9971:5b048ccd106f
child 10784:0b0fe73199d2
line wrap: on
line diff
--- a/plugins/mod_tls.lua	Wed Apr 17 10:11:22 2019 -0700
+++ b/plugins/mod_tls.lua	Wed Apr 24 18:06:48 2019 +0200
@@ -53,11 +53,14 @@
 	local parent_s2s = rawgetopt(parent,  "s2s_ssl") or NULL;
 	local host_s2s   = rawgetopt(modhost, "s2s_ssl") or parent_s2s;
 
+	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");
 	-- 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