From: Joe Orton Date: Tue, 9 Dec 2008 15:19:08 +0000 (+0000) Subject: * include/ap_socache.h: Use C++ safety wrappers, and rename ->delete X-Git-Tag: 2.3.1~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=172d5634554acceb8c311a0b8dfd4080650d0d99;p=thirdparty%2Fapache%2Fhttpd.git * include/ap_socache.h: Use C++ safety wrappers, and rename ->delete to ->remove since the former is a C++ reserved word. * modules/ssl/ssl_scache.c (ssl_scache_remove): Update accordingly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724745 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/ap_socache.h b/include/ap_socache.h index 8d0492e34db..d87ce76d29f 100644 --- a/include/ap_socache.h +++ b/include/ap_socache.h @@ -30,7 +30,11 @@ #include "ap_provider.h" #include "apr_pools.h" -/** If this flag is set, the store/retrieve/delete/status interfaces +#ifdef __cplusplus +extern "C" { +#endif + +/** If this flag is set, the store/retrieve/remove/status interfaces * of the provider are NOT safe to be called concurrently from * multiple processes or threads, and an external global mutex must be * used to serialize access to the provider. */ @@ -141,7 +145,7 @@ typedef struct ap_socache_provider_t { * @param idlen Length of id blob * @param pool Pool for temporary allocations. */ - void (*delete)(ap_socache_instance_t *instance, server_rec *s, + void (*remove)(ap_socache_instance_t *instance, server_rec *s, const unsigned char *id, unsigned int idlen, apr_pool_t *pool); @@ -163,5 +167,9 @@ typedef struct ap_socache_provider_t { /** Default provider name. */ #define AP_SOCACHE_DEFAULT_PROVIDER "default" +#ifdef __cplusplus +} +#endif + #endif /* AP_SOCACHE_H */ /** @} */ diff --git a/modules/ssl/ssl_scache.c b/modules/ssl/ssl_scache.c index 83e40053acc..7148cd91045 100644 --- a/modules/ssl/ssl_scache.c +++ b/modules/ssl/ssl_scache.c @@ -161,7 +161,7 @@ void ssl_scache_remove(server_rec *s, UCHAR *id, int idlen, ssl_mutex_on(s); } - mc->sesscache->delete(mc->sesscache_context, s, id, idlen, p); + mc->sesscache->remove(mc->sesscache_context, s, id, idlen, p); if (mc->sesscache->flags & AP_SOCACHE_FLAG_NOTMPSAFE) { ssl_mutex_off(s);