mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_telnet: Display ALPN in show_tls() if supported and available
This commit is contained in:
parent
6fd9868ed5
commit
593c04436f
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue