Mercurial > prosody-modules
view mod_portcheck/mod_portcheck.lua @ 4900:cc5ac0f0f32d
mod_muc_moderation: Update Clients section (+ Gajim, clix)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 20 Feb 2022 11:49:06 +0100 |
parents | adecfb36349e |
children | 3abbcb8584d2 |
line wrap: on
line source
module:set_global(); local portmanager = require "core.portmanager"; local commands = module:shared("admin_shell/commands") function commands.portcheck(session, line) for desc, interface, port in line:gmatch("%s(%[?([%x:.*]+)%]?:(%d+))") do if interface == "*" then interface = "0.0.0.0"; end assert(portmanager.get_service_at(interface, tonumber(port)), desc); end session.print "OK"; end function module.unload() commands.portcheck = nil; end