views:

29

answers:

1

How to set compression method for SSL/TLS connection created with M2Crypto and TwistedProtocolWrapper

A: 

Build openssl with zlib support and select SSL context to use tlsv1 method solve the problem

M2Crypto.SSL.Context('tlsv1')

estin