Software /
code /
prosody
Diff
plugins/mod_admin_shell.lua @ 12023:5a3781a12285
mod_admin_shell: Add port as a c2s/s2s:show column definition
Allows inferring whether Direct TLS was used, or perhaps which SRV
record was chosen. Not shown by default.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 07 Dec 2021 13:21:20 +0100 |
parent | 12019:a0b6896bb538 |
child | 12056:e62025f949f9 |
line wrap: on
line diff
--- a/plugins/mod_admin_shell.lua Tue Dec 07 13:04:52 2021 +0100 +++ b/plugins/mod_admin_shell.lua Tue Dec 07 13:21:20 2021 +0100 @@ -690,6 +690,13 @@ return select(2, get_s2s_hosts(session)); end; }; + port = { + title = "Port"; + width = 5; + align = "right"; + key = "conn"; + mapper = function(conn) return conn:serverport(); end; + }; dir = { title = "Dir"; width = 3;