# HG changeset patch # User Kim Alvefur # Date 1576442562 -3600 # Node ID af214e2739f544a4e84cf57c98944a2b4bc678ec # Parent 142bdba5eea2b10f4de7905c9cc17a1af7a33ac3 mod_admin_telnet: Merge hostname comparison functions Missed that there existed one already when writing the one for host:list diff -r 142bdba5eea2 -r af214e2739f5 plugins/mod_admin_telnet.lua --- a/plugins/mod_admin_telnet.lua Sun Dec 15 20:44:10 2019 +0100 +++ b/plugins/mod_admin_telnet.lua Sun Dec 15 21:42:42 2019 +0100 @@ -433,7 +433,7 @@ local function _sort_hosts(a, b) if a == "*" then return true elseif b == "*" then return false - else return a < b; end + else return a:gsub("[^.]+", string.reverse):reverse() < b:gsub("[^.]+", string.reverse):reverse(); end end function def_env.module:reload(name, hosts) @@ -964,15 +964,11 @@ return hostmanager.deactivate(hostname, reason); end -local function compare_hosts(a, b) - return a:gsub("[^.]+", string.reverse):reverse() < b:gsub("[^.]+", string.reverse):reverse(); -end - function def_env.host:list() local print = self.session.print; local i = 0; local type; - for host, host_session in iterators.sorted_pairs(prosody.hosts, compare_hosts) do + for host, host_session in iterators.sorted_pairs(prosody.hosts, _sort_hosts) do i = i + 1; type = host_session.type; if type == "local" then