mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_telnet: Allow viewing HTTP event listeners via debug:events('http')
This commit is contained in:
parent
fd3589a25e
commit
e7d4ae6aac
1 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue