mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_admin_telnet: Include both c2s connections and sessions in c2s:show()
This way both incomplete connections and hibernating c2s sessions are shown.
This commit is contained in:
parent
d9649edc2c
commit
3effd36ff0
1 changed files with 3 additions and 1 deletions
|
@ -593,8 +593,10 @@ local function get_jid(session)
|
|||
end
|
||||
|
||||
local function show_c2s(callback)
|
||||
local c2s = array.collect(values(module:shared"/*/c2s/sessions"));
|
||||
local c2s = array.collect(values(prosody.full_sessions));
|
||||
c2s:append(array.collect(values(module:shared"/*/c2s/sessions")));
|
||||
c2s:append(array.collect(values(module:shared"/*/bosh/sessions")));
|
||||
c2s:unique();
|
||||
c2s:sort(function(a, b)
|
||||
if a.host == b.host then
|
||||
if a.username == b.username then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue