Re: Another non-blocking question

2000-05-20 Thread Lutz Jaenicke
On Fri, May 19, 2000 at 05:01:27PM -0700, Michael Farajian wrote: > Recursive calls to SSL_read() get the server response, but when to STOP calling it >is the question I've seen posted here quite often. Below is a very simplified >version of the logic we are using: > > The behavior we are seein

Re: Another non-blocking question

2000-05-19 Thread Bradley Beck Asztalos
Michael Farajian wrote: What protocol are you using for your application layer data?  If you are using HTTP/1.1 then the connection is left open by default and you have to make sure that you are only reading as much data as is specified by the content-length header. But this problem is not pecul

Another non-blocking question

2000-05-19 Thread Michael Farajian
We are using Win32 non-blocking sockets for our communication.  Everything seems to be working with one exception.   Recursive calls to SSL_read() get the server response, but when to STOP calling it is the question I've seen posted here quite often.  Below is a very simplified version of t