diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-10-09 15:02:44 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-10-09 15:02:44 +0100 |
commit | e7d4ae6aacbdf7cf6a5daa9e48e3d260f906875a (patch) | |
tree | 6c1e38905160e75baf465d8e61887fd94d8747f5 /plugins/mod_admin_telnet.lua | |
parent | fd3589a25e6b2b856a0b4e38b0ae7cb8b47c1aec (diff) | |
download | prosody-e7d4ae6aacbdf7cf6a5daa9e48e3d260f906875a.tar.gz prosody-e7d4ae6aacbdf7cf6a5daa9e48e3d260f906875a.zip |
mod_admin_telnet: Allow viewing HTTP event listeners via debug:events('http')
Diffstat (limited to 'plugins/mod_admin_telnet.lua')
-rw-r--r-- | plugins/mod_admin_telnet.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index 828e85f4..1cbe27a4 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -1143,10 +1143,13 @@ end function def_env.debug:events(host, event) local events_obj; if host and host ~= "*" then - if not prosody.hosts[host] then + if host == "http" then + events_obj = require "net.http.server"._events; + elseif not prosody.hosts[host] then return false, "Unknown host: "..host; + else + events_obj = prosody.hosts[host].events; end - events_obj = prosody.hosts[host].events; else events_obj = prosody.events; end |