Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 38731 invoked by uid 500); 14 Mar 2002 23:37:38 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 38716 invoked from network); 14 Mar 2002 23:37:38 -0000 X-Authentication-Warning: mako.covalent.net: dougm owned process doing -bs Date: Thu, 14 Mar 2002 15:36:32 -0800 (PST) From: Doug MacEachern To: "'dev@httpd.apache.org'" Subject: Re: [PATCH] SSL Session Caching stuff In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N looks good to me madhu. haven't tested, but it compiles, so i've committed the patch and remaining issues can be worked out later. only have one question at the moment, what is this for? + void *data; + const char *userdata_key = "ssl_scache_init"; + + apr_pool_userdata_get(&data, userdata_key, s->process->pool); + if (!data) { + apr_pool_userdata_setn((const void *)1, userdata_key, + apr_pool_cleanup_null, s->process->pool); + return; + }