Re: SSL_read() hang after read http 100 continue headers

2002-11-07 Thread res0m4ko
then I can handle it. It hangs there, I can't do anything? Any ideas? Is it a bug in SSL_Read? Between Date header and HTTP/1.1 200 OK, the terminators  0d 0a 0d 0a confused SSL_read? From: "Gait Boxman" ([EMAIL PROTECTED] <mailto:gait.boxman%40tie.nl>) Subject:

Re: SSL_read() hang after read http 100 continue headers

2002-11-07 Thread Tim Regovich
ror returns, then I can handle it. It > hangs there, I can't do > anything? > > Any ideas? Is it a bug in SSL_Read? Between Date > header and HTTP/1.1 200 OK, > the > terminators 0d 0a 0d 0a confused SSL_read? > > From: "Gait Boxman" > > ([EMAIL P

Re: SSL_read() hang after read http 100 continue headers

2002-10-31 Thread Gait Boxman
Looks like your code is impatient. When you get continue, 4 retries won't be enough to get the next response. Basically, if you get an SSL_ERROR_WANT_READ, you just need to keep continuing to retry the SSL_read, if you expect more data that is. So, if you expect a server response, keep tryin