Re: Session Caching Help

2005-11-21 Thread Perry L. Jones
Sorry I left that line out yes I have set that too, maybe 10 is not a good value to set in this functions? SSL_CTX_set_session_id_context( ctx, "Server", 10 ) Perry Arno Garrels wrote: Perry L. Jones wrote: Can someone please tell me why my server application does not cache a session if

Re: Session Caching Help

2005-11-21 Thread Arno Garrels
Perry L. Jones wrote: > Can someone please tell me why my server application does not cache a > session if It set the options to the following? > > SSL_CTX_set_session_cache_mode( ctx, SSL_SESS_CACHE_SERVER ); > > and I don't set the callback functions: > > SSL_CTX_sess_set_new_cb( ctx, NewSess

Session Caching Help

2005-11-21 Thread Perry L. Jones
Can someone please tell me why my server application does not cache a session if It set the options to the following? SSL_CTX_set_session_cache_mode( ctx, SSL_SESS_CACHE_SERVER ); and I don't set the callback functions: SSL_CTX_sess_set_new_cb( ctx, NewSessionCallBack ); SSL_CTX_sess_set_remo