aboutsummaryrefslogtreecommitdiffstats
path: root/prosody
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-12-04 18:57:54 +0000
committerMatthew Wild <mwild1@gmail.com>2009-12-04 18:57:54 +0000
commitc4c855ca4ebc7e07f75ca62fb0b63b65c5a1c851 (patch)
tree73196a4439addc292dcbc3aca9ef7d73da9ef319 /prosody
parentd92cd1e697553c1a8bd3b10f9326a0af3ec51f6d (diff)
downloadprosody-c4c855ca4ebc7e07f75ca62fb0b63b65c5a1c851.tar.gz
prosody-c4c855ca4ebc7e07f75ca62fb0b63b65c5a1c851.zip
prosody: Expose global_ssl_ctx through prosody object
Diffstat (limited to 'prosody')
-rwxr-xr-xprosody1
1 files changed, 1 insertions, 0 deletions
diff --git a/prosody b/prosody
index 1805e5b2..e4d0c719 100755
--- a/prosody
+++ b/prosody
@@ -179,6 +179,7 @@ function init_global_state()
if global_ssl_ctx then
local default_ssl_ctx = { mode = "server", protocol = "sslv23", capath = "/etc/ssl/certs", verify = "none", options = "no_sslv2"; };
setmetatable(global_ssl_ctx, { __index = default_ssl_ctx });
+ prosody.global_ssl_ctx = global_ssl_ctx;
end
local cl = require "net.connlisteners";