diff options
author | Joe Orton <jorton@apache.org> | 2004-01-08 17:26:53 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2004-01-08 17:26:53 +0100 |
commit | 3c52d23027a17576fe8d1b18dc0441de1f69c562 (patch) | |
tree | 0dd5fcc546113d9781fb56767b5e005d6e436c0a /LAYOUT | |
parent | Add some brackets. (diff) | |
download | apache2-3c52d23027a17576fe8d1b18dc0441de1f69c562.tar.xz apache2-3c52d23027a17576fe8d1b18dc0441de1f69c562.zip |
Add support to mod_ssl for a distributed session cache using
distcache.
* LAYOUT: Update for removal of scache_shmht and addition of scache_dc.
* modules/ssl/config.m4: Check for libdistcache; build ssl_scache_dc.lo.
* modules/ssl/mod_ssl.dsp: Build ssl_scache_dc (with luck).
* modules/ssl/mod_ssl.h: Add SSL_SCMODE_DC and scache_dc_* prototypes.
* modules/ssl/ssl_engine_config.c (ssl_cmd_SSLSessionCache): Allow
use of dc: argument.
* modules/ssl/ssl_scache_dc.c: New file.
* modules/ssl/ssl_scache.c (ssl_scache_init, ssl_scache_kill,
ssl_scache_store, ssl_scache_retrieve, ssl_scache_remove,
ssl_ext_status_hook): Hook into scache_dc.
Submitted by: Geoff Thorpe <geoff@geoffthorpe.net>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102227 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'LAYOUT')
-rw-r--r-- | LAYOUT | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -128,7 +128,7 @@ modules/ ................ Manditory and Add-In Apache stock modules ssl_scache.c ............ session cache abstraction layer ssl_scache_dbm.c ........ session cache via DBM file ssl_scache_shmcb.c ...... session cache via shared memory cyclic buffer - ssl_scache_shmht.c ...... session cache via shared memory hash table + ssl_scache_dc.c ......... session cache offloading via 'distcache' ssl_util.c .............. utility functions ssl_util_ssl.c .......... the OpenSSL companion source ssl_util_ssl.h .......... the OpenSSL companion header |