mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_admin_telnet: include BOSH connections in c2s:count (#998)
This commit is contained in:
parent
ed8b36a84b
commit
a16b70c96d
1 changed files with 3 additions and 1 deletions
|
@ -612,7 +612,9 @@ local function show_c2s(callback)
|
|||
end
|
||||
|
||||
function def_env.c2s:count()
|
||||
return true, "Total: ".. iterators.count(values(module:shared"/*/c2s/sessions")) .." clients";
|
||||
local c2s_count = iterators.count(values(module:shared"/*/c2s/sessions"))
|
||||
local bosh_count = iterators.count(values(module:shared"/*/bosh/sessions"))
|
||||
return true, "Total: ".. c2s_count + bosh_count .." clients";
|
||||
end
|
||||
|
||||
function def_env.c2s:show(match_jid, annotate)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue