mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +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
|
if session.secure == false then
|
||||||
session.secure = true;
|
session.secure = true;
|
||||||
|
|
||||||
-- Check if TLS compression is used
|
|
||||||
local sock = session.conn:socket();
|
local sock = session.conn:socket();
|
||||||
if sock.info then
|
if sock.info then
|
||||||
session.compressed = sock:info"compression";
|
local info = sock:info();
|
||||||
elseif sock.compression then
|
(session.log or log)("info", "Stream encrypted (%s) with %s, authenticated with %s and exchanged keys with %s",
|
||||||
session.compressed = sock:compression(); --COMPAT mw/luasec-hg
|
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
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -283,12 +283,15 @@ function stream_callbacks.streamopened(session, attr)
|
||||||
if session.secure == false then
|
if session.secure == false then
|
||||||
session.secure = true;
|
session.secure = true;
|
||||||
|
|
||||||
-- Check if TLS compression is used
|
|
||||||
local sock = session.conn:socket();
|
local sock = session.conn:socket();
|
||||||
if sock.info then
|
if sock.info then
|
||||||
session.compressed = sock:info"compression";
|
local info = sock:info();
|
||||||
elseif sock.compression then
|
(session.log or log)("info", "Stream encrypted (%s) with %s, authenticated with %s and exchanged keys with %s",
|
||||||
session.compressed = sock:compression(); --COMPAT mw/luasec-hg
|
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
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue