RE: Unable to send a response packet to client browser

2008-06-19 Thread David Schwartz
> for (nread = 0; nread < sizeof(buf); nread += err) > { > err = SSL_read(client_conn, buf + nread, > sizeof(buf) - nread); > if (err <= 0) > break; > } Umm, this doesn't look like

Re: Unable to send a response packet to client browser

2008-06-19 Thread Kyle Hamilton
Uh, what is the actual behavior? Have you attempted to debug it with openssl s_client? Have you attempted to figure out what a real webserver, such as Apache, does with the same input? This is not a general "we will debug your code for you" list, but we can point you in the directions to look fo