mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_tls: Rename variables to be less confusing
This commit is contained in:
parent
e81051a181
commit
573c5bea61
1 changed files with 4 additions and 4 deletions
|
@ -10,8 +10,8 @@ local config = require "core.configmanager";
|
|||
local create_context = require "core.certmanager".create_context;
|
||||
local st = require "util.stanza";
|
||||
|
||||
local secure_auth_only = module:get_option("c2s_require_encryption") or module:get_option("require_encryption");
|
||||
local secure_s2s_only = module:get_option("s2s_require_encryption");
|
||||
local c2s_require_encryption = module:get_option("c2s_require_encryption") or module:get_option("require_encryption");
|
||||
local s2s_require_encryption = module:get_option("s2s_require_encryption");
|
||||
local allow_s2s_tls = module:get_option("s2s_allow_encryption") ~= false;
|
||||
|
||||
local xmlns_starttls = 'urn:ietf:params:xml:ns:xmpp-tls';
|
||||
|
@ -20,8 +20,8 @@ local starttls_proceed = st.stanza("proceed", starttls_attr);
|
|||
local starttls_failure = st.stanza("failure", starttls_attr);
|
||||
local c2s_feature = st.stanza("starttls", starttls_attr);
|
||||
local s2s_feature = st.stanza("starttls", starttls_attr);
|
||||
if secure_auth_only then c2s_feature:tag("required"):up(); end
|
||||
if secure_s2s_only then s2s_feature:tag("required"):up(); end
|
||||
if c2s_require_encryption then c2s_feature:tag("required"):up(); end
|
||||
if s2s_require_encryption then s2s_feature:tag("required"):up(); end
|
||||
|
||||
local global_ssl_ctx = prosody.global_ssl_ctx;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue