mod_c2s, mod_s2s: Log a message that stream encryption has been enabled with some details

This commit is contained in:
Kim Alvefur 2013-08-02 15:12:24 +02:00
parent 7204bd3a23
commit 0c6c0e9c29
2 changed files with 14 additions and 8 deletions

View file

@ -283,12 +283,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