mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_s2s: Detect TLS compression
This commit is contained in:
parent
6da5020684
commit
b7219c57f4
1 changed files with 8 additions and 0 deletions
|
@ -184,6 +184,14 @@ function stream_callbacks.streamopened(session, attr)
|
|||
-- TODO: Rename session.secure to session.encrypted
|
||||
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
|
||||
end
|
||||
end
|
||||
|
||||
if session.direction == "incoming" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue