mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_c2s, mod_s2s: Log a message that stream encryption has been enabled with some details
This commit is contained in:
parent
7204bd3a23
commit
0c6c0e9c29
2 changed files with 14 additions and 8 deletions
|
@ -68,12 +68,15 @@ function stream_callbacks.streamopened(session, attr)
|
|||
if session.secure == false then
|
||||
session.secure = true;
|
||||
|
||||
-- Check if TLS compression is used
|
||||
local sock = session.conn:socket();
|
||||
if sock.info then
|
||||
session.compressed = sock:info"compression";
|
||||
elseif sock.compression then
|
||||
session.compressed = sock:compression(); --COMPAT mw/luasec-hg
|
||||
local info = sock:info();
|
||||
(session.log or log)("info", "Stream encrypted (%s) with %s, authenticated with %s and exchanged keys with %s",
|
||||
info.protocol, info.encryption, info.authentication, info.key);
|
||||
session.compressed = info.compression;
|
||||
else
|
||||
(session.log or log)("info", "Stream encrypted");
|
||||
session.compressed = sock.compression and sock:compression(); --COMPAT mw/luasec-hg
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue