# HG changeset patch # User Arc Riley # Date 1556843329 25200 # Node ID cdf0b63a0d61383e47faa8a9d2b710d03bfd7862 # Parent 521fb218098d8124a479bb99c17d81874b8456c6 mod_admin_telnet: added "(bosh)" and "(websocket)" connection flags (#998) diff -r 521fb218098d -r cdf0b63a0d61 plugins/mod_admin_telnet.lua --- a/plugins/mod_admin_telnet.lua Thu May 02 16:33:14 2019 -0700 +++ b/plugins/mod_admin_telnet.lua Thu May 02 17:28:49 2019 -0700 @@ -554,6 +554,12 @@ 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