[issue13634] Python SSL stack doesn't support Compression configuration

2011-12-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Now committed in 3.3. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue13634] Python SSL stack doesn't support Compression configuration

2011-12-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 20b52be99b5d by Antoine Pitrou in branch 'default': Issue #13634: Add support for querying and disabling SSL compression. http://hg.python.org/cpython/rev/20b52be99b5d -- nosy: +python-dev ___ Python tra

[issue13634] Python SSL stack doesn't support Compression configuration

2011-12-19 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue13634] Python SSL stack doesn't support Compression configuration

2011-12-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: (note that some OpenSSLs are built without compression, such as Mageia's) -- ___ Python tracker ___ ___

[issue13634] Python SSL stack doesn't support Compression configuration

2011-12-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch. -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file24052/compression.patch ___ Python tracker _

[issue13634] Python SSL stack doesn't support Compression configuration

2011-12-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: So, there are two things here: - allow to disable compression (it's enabled by default AFAICT) using the SSL_OP_NO_COMPRESSION flag - allow to query compression status on SSL sockets using the SSL_get_current_compression() API -- nosy: +pitrou stage:

[issue13634] Python SSL stack doesn't support Compression configuration

2011-12-19 Thread naif
New submission from naif : TLSv1 support compression with gzip/deflate that can provide for a lot of protocols a great improvement (just think about SIP/TLS or IMAP) in terms of bandwidth. Currenly Python SSL stack based on OpenSSL doesn't allow the configuration (enabling/disabling/forcing)