RE: Using SSL_clear to reuse SSL object

2002-02-27 Thread Yoram Zahavi
(s) for caching considerations. Yoram. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 8:02 AM To: [EMAIL PROTECTED] Cc: Lutz Jaenicke; [EMAIL PROTECTED] Subject: Re: Using SSL_clear to reuse SSL object Lutz Jaenicke [EMAIL

Re: Using SSL_clear to reuse SSL object

2002-02-27 Thread Bodo Moeller
Yoram Zahavi [EMAIL PROTECTED] in epsilon.openssl.dev: Thanks for the explanation, I liked the SSL_set_session(s, NULL) usage. Any reasons for calling it *before* SSL_clear(s) ? I think you better call it after the call to SSL_clear(s). Otherwise, the current session is already freed by

Re: Using SSL_clear to reuse SSL object

2002-02-26 Thread Bodo Moeller
Lutz Jaenicke [EMAIL PROTECTED]: On Wed, Feb 20, 2002 at 12:29:03PM +0200, Yoram Zahavi wrote: My server application is using SSL_clear to reuse the SSL object, instead of allocating a new one on every new connection. On first connection the client succeeds to connect the server, and later