I have written a server and client app using openssl. Everything works beatifully till I call SSL_renegotiate then they both fail. The function I call for renegotiation is as follows:

int Renegotiate(void)
{
   int i;
 
   SSL_renegotiate(ssl);
   i=SSL_do_handshake(ssl);
   fprintf(stdout,"SSL_do_handshake -> %d\n",i);
   return i;
}

I am currently using openssl 0.9.4, I was wondering if this issue is addressed in the next version of the library.

Thanks

-- 
___________________________________________________________________
Houman Ghaemi                       www.stormix.com     
Software Developer                  Tel: (604) 688-9137
email: [EMAIL PROTECTED]
 


Reply via email to