This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nicolary
Recipients
Date 2004-02-17.20:46:54
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=27555

I had this problem going against a Novell iChains reverse proxy 
and adding the following to account for an SSLv3 protocol 
bug in the server to the socketmodule.c fixed this problem:

SSL_CTX_set_options(self->ctx, 
SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS);

I added this after the SSL_CTX_set_verify call in the 
aforementioned file.  Ther are other bug workaround that one 
can enable or one can enable all of the workarounds with the 
following:

SSL_CTX_set_options(conn->ssl.ctx, SSL_OP_ALL);
History
Date User Action Args
2007-08-23 14:09:59adminlinkissue666219 messages
2007-08-23 14:09:59admincreate