mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_c2s: Log the same messages for Direct TLS as with starttls
^C^V
This commit is contained in:
parent
807c78400f
commit
0acd505f2e
1 changed files with 6 additions and 1 deletions
|
@ -295,7 +295,12 @@ function listener.onconnect(conn)
|
|||
-- Check if TLS compression is used
|
||||
local sock = conn:socket();
|
||||
if sock.info then
|
||||
session.compressed = sock:info"compression";
|
||||
local info = sock:info();
|
||||
(session.log or log)("info", "Stream encrypted (%s with %s)", info.protocol, info.cipher);
|
||||
session.compressed = info.compression;
|
||||
m_tls_params:with_labels(info.protocol, info.cipher):add(1)
|
||||
else
|
||||
(session.log or log)("info", "Stream encrypted");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue