plugins/mod_c2s.lua
changeset 5764 969e0a054795
parent 5759 767e29b2cd3a
child 5773 c9a712673d8a
--- a/plugins/mod_c2s.lua	Fri Aug 02 14:44:56 2013 +0200
+++ b/plugins/mod_c2s.lua	Fri Aug 02 15:12:24 2013 +0200
@@ -68,12 +68,15 @@
 	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