mod_admin_telnet: Display ALPN in show_tls() if supported and available

This commit is contained in:
Kim Alvefur 2019-11-21 00:16:20 +01:00
parent 6fd9868ed5
commit 593c04436f

View file

@ -590,6 +590,12 @@ local function tls_info(session, line)
line[#line+1] = ("(SNI:%q)"):format(name);
end
end
if sock.getalpn then
local proto = sock:getalpn();
if proto then
line[#line+1] = ("(ALPN:%q)"):format(proto);
end
end
else
line[#line+1] = "(insecure)";
end