mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_tls: Record STARTTLS state so it can be shown in Shell
This field can be viewed using s2s:show(nil, "... starttls") even without any special support in mod_admin_shell, which can be added later to make it nicer. One can then assume that a TLS connection with an empty / nil starttls field means Direct TLS.
This commit is contained in:
parent
79f4868b63
commit
a2f8218a63
2 changed files with 6 additions and 1 deletions
|
@ -429,7 +429,8 @@ function stream_callbacks._streamopened(session, attr)
|
|||
session.had_stream = true; -- Had a stream opened at least once
|
||||
|
||||
-- TODO: Rename session.secure to session.encrypted
|
||||
if session.secure == false then
|
||||
if session.secure == false then -- Set by mod_tls during STARTTLS handshake
|
||||
session.starttls = "completed";
|
||||
session_secure(session);
|
||||
end
|
||||
|
||||
|
@ -750,6 +751,7 @@ local function initialize_session(session)
|
|||
local w = conn.write;
|
||||
|
||||
if conn:ssl() then
|
||||
-- Direct TLS was used
|
||||
session_secure(session);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue