Software /
code /
prosody
Changeset
10087:36d3709603d1
mod_admin_telnet: Add xmpp:ping to help
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 26 Jul 2019 21:13:17 +0200 |
parents | 10086:4ade3674baf0 |
children | 10088:97da8452c6a6 |
files | plugins/mod_admin_telnet.lua |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_admin_telnet.lua Fri Jul 26 21:10:42 2019 +0200 +++ b/plugins/mod_admin_telnet.lua Fri Jul 26 21:13:17 2019 +0200 @@ -239,6 +239,7 @@ print [[server - Uptime, version, shutting down, etc.]] print [[port - Commands to manage ports the server is listening on]] print [[dns - Commands to manage and inspect the internal DNS resolver]] + print [[xmpp - Commands for sending XMPP stanzas]] print [[config - Reloading the configuration, etc.]] print [[console - Help regarding the console itself]] elseif section == "c2s" then @@ -282,6 +283,8 @@ print [[dns:setnameserver(nameserver) - Replace the list of name servers with the supplied one]] print [[dns:purge() - Clear the DNS cache]] print [[dns:cache() - Show cached records]] + elseif section == "xmpp" then + print [[xmpp:ping(localhost, remotehost) -- Sends a ping to a remote XMPP server and reports the response]] elseif section == "config" then print [[config:reload() - Reload the server configuration. Modules may need to be reloaded for changes to take effect.]] elseif section == "console" then