mod_admin_shell: Reduce width of 'Security' column (thanks Link Mauve)

Tricky to represent "secure, but no details" in short enough space.
This commit is contained in:
Kim Alvefur 2021-11-26 11:39:13 +01:00
parent 303fd5b4ee
commit 2ec4d4a83d

View file

@ -726,14 +726,14 @@ local available_columns = {
secure = {
title = "Security";
key = "conn";
width = 11;
width = 8;
mapper = function(conn, session)
if not session.secure then return "insecure"; end
if not conn or not conn:ssl() then return "secure" end
local sock = conn and conn:socket();
if not sock then return "unknown TLS"; end
if not sock then return "secure"; end
local tls_info = sock.info and sock:info();
return tls_info and tls_info.protocol or "unknown TLS";
return tls_info and tls_info.protocol or "secure";
end;
};
encryption = {