mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Right now SSLMutex is bogus. It just uses APR_LOCK_DEFAULT no
matter what. We now allow for the full range of APR mutex locking mechanims to be used, while maintaining backwards compatibility. PR: 8122 Obtained from: Submitted by: Reviewed by: William Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98771 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -420,6 +420,7 @@ typedef struct {
|
||||
apr_rmm_t *pSessionCacheDataRMM;
|
||||
apr_table_t *tSessionCacheDataTable;
|
||||
ssl_mutexmode_t nMutexMode;
|
||||
apr_lockmech_e nMutexMech;
|
||||
const char *szMutexFile;
|
||||
apr_global_mutex_t *pMutex;
|
||||
apr_array_header_t *aRandSeed;
|
||||
@@ -529,6 +530,9 @@ typedef struct {
|
||||
/* API glue structures */
|
||||
extern module AP_MODULE_DECLARE_DATA ssl_module;
|
||||
|
||||
/* "global" stuff */
|
||||
extern const char ssl_valid_ssl_mutex_string[];
|
||||
|
||||
/* configuration handling */
|
||||
SSLModConfigRec *ssl_config_global_create(server_rec *);
|
||||
void ssl_config_global_fix(SSLModConfigRec *);
|
||||
|
Reference in New Issue
Block a user