mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
mod_c2s, mod_s2s: Log cipher and encryption info in a more compact and (hopefully) less confusing way
This commit is contained in:
parent
1764b9fba3
commit
938d568ac4
2 changed files with 2 additions and 4 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue