Re: [Python-Dev] Python 2.6 SSL

2008-06-28 Thread Bill Janssen
> I hope this the correct place to report this... Hi, Roger. Please file a bug report at http://bugs.python.org/, and assign it to me. Please attach a patch for the change you made to the unit test suite to send >16K. Thanks! Bill ___ Python-Dev mail

Re: [Python-Dev] Python 2.6 SSL

2008-06-28 Thread Guido van Rossum
Roger, can you show us the relevant code? On Sat, Jun 28, 2008 at 5:59 AM, Roger wenham <[EMAIL PROTECTED]> wrote: > HI, > > I have used the SSL lib to wrap sockets in existing client server code, but I > find that > the max send size is 16K. In other words I send 20K, the write call returns > 2

[Python-Dev] Python 2.6 SSL

2008-06-28 Thread Roger wenham
HI, I have used the SSL lib to wrap sockets in existing client server code, but I find that the max send size is 16K. In other words I send 20K, the write call returns 20K but the receiving end only gets 16K. I remove the wraper and everything worksagain. I even modified the unit test to send >