# HG changeset patch # User Kim Alvefur # Date 1638879680 -3600 # Node ID 5a3781a1228566cded541a1a359aba220b005b9d # Parent eedd3eff076824f2d0340badb42dc80645e797ac 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. diff -r eedd3eff0768 -r 5a3781a12285 plugins/mod_admin_shell.lua --- 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;