Software / code / prosody
Comparison
plugins/mod_admin_telnet.lua @ 4516:24bb3994df7a
mod_admin_telnet: Add flag for stream management.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Mon, 05 Mar 2012 22:11:05 +0100 |
| parent | 4515:e2774644688d |
| child | 4517:2e274e088ddc |
comparison
equal
deleted
inserted
replaced
| 4515:e2774644688d | 4516:24bb3994df7a |
|---|---|
| 494 line[#line+1] = "(encrypted)"; | 494 line[#line+1] = "(encrypted)"; |
| 495 end | 495 end |
| 496 if session.compressed then | 496 if session.compressed then |
| 497 line[#line+1] = "(compressed)"; | 497 line[#line+1] = "(compressed)"; |
| 498 end | 498 end |
| 499 if session.smacks then | |
| 500 line[#line+1] = "(sm)"; | |
| 501 end | |
| 499 return table.concat(line, " "); | 502 return table.concat(line, " "); |
| 500 end | 503 end |
| 501 | 504 |
| 502 def_env.s2s = {}; | 505 def_env.s2s = {}; |
| 503 function def_env.s2s:show(match_jid) | 506 function def_env.s2s:show(match_jid) |