mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
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:
parent
303fd5b4ee
commit
2ec4d4a83d
1 changed files with 3 additions and 3 deletions
|
@ -726,14 +726,14 @@ local available_columns = {
|
||||||
secure = {
|
secure = {
|
||||||
title = "Security";
|
title = "Security";
|
||||||
key = "conn";
|
key = "conn";
|
||||||
width = 11;
|
width = 8;
|
||||||
mapper = function(conn, session)
|
mapper = function(conn, session)
|
||||||
if not session.secure then return "insecure"; end
|
if not session.secure then return "insecure"; end
|
||||||
if not conn or not conn:ssl() then return "secure" end
|
if not conn or not conn:ssl() then return "secure" end
|
||||||
local sock = conn and conn:socket();
|
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();
|
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;
|
end;
|
||||||
};
|
};
|
||||||
encryption = {
|
encryption = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue