Hi, 

> The application I am writing has requirement that after a 
> request is sent to server, it should hear from the server in 
> xyz seconds.

I have done this by using non blocking sockets with SSL_read.
I call SSL_read in a loop using select() when necessary.  I use
a timeout in the calls to select().  You terminate the loop
when you have read all the data or your maximum timeout is
exceeded.

Regards,
Mark
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to