On Mon, Feb 23, 2009 at 12:53 PM, Ashish Khare <[email protected]> wrote: > Hi Eric, > > Thanks for the fast response. > By "Session" I mean when the request comes into the picture, the "c" > <Connection> and "r"<request_rec> parameters are intialized. > Session ends when the request is served. the "c" and "r" parameters got > destroyed or cleanup. > > Can you please send me the code snippet to register the cleanup function as > you suggested.
They're not initialized and destroyed together, e.g. keepalive. See ssl_io_filter_init in modules/ssl/ssl_engine_io.c, except you'd need to grab the conn_rec from the request_rec. -- Eric Covener [email protected]
