Re: Caching SSL Sessions

2000-09-11 Thread Amit Chopra
Hi, > I'd like to know if the browsers IE and Netscape do reuse the > sessions because otherwise it's pretty useless for me taking that SSL-cache > into use. Do you happen to know if they do or not? They do. That's what I meant when I said they cache sessions. When your application starts 1.

Re: Caching SSL Sessions

2000-09-11 Thread Lutz Jaenicke
On Mon, Sep 11, 2000 at 02:49:24PM +0300, Wirta, Ville wrote: > Netscape and IE both cache sessions and the server you are writing > should as well. I believe most sane browsers would do the same. > Unless you are writing your own client, you really don't have to worry > about client-side cachin

RE: Caching SSL Sessions

2000-09-11 Thread Wirta, Ville
Netscape and IE both cache sessions and the server you are writing should as well. I believe most sane browsers would do the same. Unless you are writing your own client, you really don't have to worry about client-side caching. Let's say your server caches sessions. If the browser doesn't re-u

Re: Caching SSL Sessions

2000-09-11 Thread Amit Chopra
Netscape and IE both cache sessions and the server you are writing should as well. I believe most sane browsers would do the same. Unless you are writing your own client, you really don't have to worry about client-side caching. Let's say your server caches sessions. If the browser doesn't re-u

Re: Caching SSL Sessions

2000-09-11 Thread Lutz Jaenicke
On Mon, Sep 11, 2000 at 12:18:04PM +0300, Wirta, Ville wrote: > I'd also be VERY interested of this session-cache-thing but I've allready > seen two different (as I understood) ways to accomplish this and I'm > confused. I wonder if there is a "session-how-to" somewhere or a simple > example. I'd

RE: Caching SSL Sessions

2000-09-11 Thread Phil Shattky
; out my self but as I am what I am I'm gratefully waiting for knowledge given > from above :-) > > Thanks allready! > > Yours sincerelly VW > > > -Original Message- > From: Amit Chopra [mailto:[EMAIL PROTECTED]] > Sent: Saturday, September 0

RE: Caching SSL Sessions

2000-09-11 Thread Wirta, Ville
PROTECTED]] Sent: Saturday, September 09, 2000 10:10 AM To: [EMAIL PROTECTED] Subject: Re: Caching SSL Sessions Before calling SSL_free(pSSL); call SSL_set_shutdown(pSSL,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN); This should solve your problem on the server side. Are you sure you want to be