mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_admin_telnet: added "(bosh)" and "(websocket)" connection flags (#998)
This commit is contained in:
parent
bbc0bd0b8a
commit
ed8b36a84b
1 changed files with 6 additions and 0 deletions
|
@ -554,6 +554,12 @@ local function session_flags(session, line)
|
|||
if session.is_bidi then
|
||||
line[#line+1] = "(bidi)";
|
||||
end
|
||||
if session.bosh_version then
|
||||
line[#line+1] = "(bosh)";
|
||||
end
|
||||
if session.websocket_request then
|
||||
line[#line+1] = "(websocket)";
|
||||
end
|
||||
return table.concat(line, " ");
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue