mod_c2s, mod_s2s: Log cipher and encryption info in a more compact and (hopefully) less confusing way

This commit is contained in:
Kim Alvefur 2013-08-14 15:00:36 +02:00
parent 1764b9fba3
commit 938d568ac4
2 changed files with 2 additions and 4 deletions

View file

@ -73,8 +73,7 @@ function stream_callbacks.streamopened(session, attr)
local sock = session.conn:socket();
if sock.info then
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.log or log)("info", "Stream encrypted (%s with %s)", info.protocol, info.cipher);
session.compressed = info.compression;
else
(session.log or log)("info", "Stream encrypted");