Terminate SSL Session in Apache2.2

2006-10-30 Thread Serge Hauser
Hi, the problem i thought it solved apeared again in 2.2.x, since the api is not available anymore. could anyone tell me how to terminate a ssl session from my own module with Apache2.2 and mod_ssl ? thanks serge __ Apache

Re: Apache 2.x : Terminate SSL Session from own module ?

2006-10-26 Thread Serge Hauser
Hi all, nevermind, i m using ssl_scache_remove() now, to invalidate the session, thats working perfectly. mod_ssl stores a copy of the session in the cache, so any changes to the session object are lost when it gets retrieved from the cache again. i also noticed the openssl cacheoperation

Apache 2.x : Terminate SSL Session from own module ?

2006-10-24 Thread Serge Hauser
Hi all, i try to terminate a session in my own module by setting the creation time and flushing the cache, unfortunately by the next request from the same client i get the same session again. (actually it seems to take it from the cache (ignoring the openssl sessioncache attributes). is