aboutsummaryrefslogtreecommitdiffstats
path: root/util/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-09-09 22:14:43 +0200
committerKim Alvefur <zash@zash.se>2021-09-09 22:14:43 +0200
commitf24aba7b1989c01faa23320e2ed4df16498d3043 (patch)
tree8722d8aefdb891a85a8eeb929808f305f25e768c /util/prosodyctl
parent4f520714ce86828a20ab5358603e27dc86e1e0dd (diff)
downloadprosody-f24aba7b1989c01faa23320e2ed4df16498d3043.tar.gz
prosody-f24aba7b1989c01faa23320e2ed4df16498d3043.zip
mod_c2s: Rename Direct TLS listener 'c2s_direct_tls' for clarity
And to follow existing naming practices better than 'legacy_ssl' did.
Diffstat (limited to 'util/prosodyctl')
-rw-r--r--util/prosodyctl/check.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua
index 0a136709..7b3da3ba 100644
--- a/util/prosodyctl/check.lua
+++ b/util/prosodyctl/check.lua
@@ -311,7 +311,7 @@ local function check(arg)
local ip = require "util.ip";
local c2s_ports = set.new(configmanager.get("*", "c2s_ports") or {5222});
local s2s_ports = set.new(configmanager.get("*", "s2s_ports") or {5269});
- local c2s_tls_ports = set.new(configmanager.get("*", "direct_tls_ports") or {});
+ local c2s_tls_ports = set.new(configmanager.get("*", "c2s_direct_tls_ports") or {});
local s2s_tls_ports = set.new(configmanager.get("*", "s2s_direct_tls_ports") or {});
local c2s_srv_required, s2s_srv_required, c2s_tls_srv_required, s2s_tls_srv_required;