Hi!

I wonder how SSL should be working with connection keep-alive? I mean that
when functions:

SSL_CTX_new();
SSL_new(pCtx);
SSL_clear(pSSL);
SSL_set_session(pSSL,NULL);
SSL_set_accept_state(pSSL);

have been called for a connection, then what? Can I keep on reading and
writing now matter how long or do have to call:

SSL_clear(pSSL);
SSL_set_session(pSSL,NULL);
SSL_set_accept_state(pSSL);

again sometimes? I have keep-alive working with http but I keep getting
errors from SSL-connections.

Then another question: do I have to know the size of a dynamic web-page when
I send it to a client and keep-alive is on or would there possibly be a way
of sending the client something, maybe CRLF, so that it would understand it
already got all the data?

        Thanks a lot!

        Yours   VW

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to