Software /
code /
prosody
Diff
plugins/mod_c2s.lua @ 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 |
parent | 5120:bcabea740c00 |
child | 5281:815c689f85ad |
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