Software /
code /
prosody
Changeset
5228:edabb34417b7
mod_c2s: Check if TLS compression is used
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 09 Dec 2012 11:50:09 +0100 |
parents | 5227:97f395938028 |
children | 5229:5566236f363f |
files | plugins/mod_c2s.lua |
diffstat | 1 files changed, 16 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_c2s.lua Sun Dec 09 11:44:45 2012 +0100 +++ b/plugins/mod_c2s.lua Sun Dec 09 11:50:09 2012 +0100 @@ -66,6 +66,14 @@ -- since we now have a new stream header, session is secured 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 local features = st.stanza("stream:features"); @@ -189,6 +197,14 @@ -- Client is using legacy SSL (otherwise mod_tls sets this flag) if conn:ssl() then session.secure = true; + + -- Check if TLS compression is used + local sock = 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 opt_keepalives then