mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
Move struct definition out of the header file since it is only used in this source file
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@687819 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -462,16 +462,6 @@ typedef struct {
|
||||
const char *szUserName;
|
||||
} SSLDirConfigRec;
|
||||
|
||||
/**
|
||||
* Dynamic lock structure
|
||||
*/
|
||||
struct CRYPTO_dynlock_value {
|
||||
apr_pool_t *pool;
|
||||
const char* file;
|
||||
int line;
|
||||
apr_thread_mutex_t *mutex;
|
||||
};
|
||||
|
||||
/**
|
||||
* function prototypes
|
||||
*/
|
||||
|
@@ -351,6 +351,14 @@ static void ssl_util_thr_lock(int mode, int type,
|
||||
}
|
||||
}
|
||||
|
||||
/* Dynamic lock structure */
|
||||
struct CRYPTO_dynlock_value {
|
||||
apr_pool_t *pool;
|
||||
const char* file;
|
||||
int line;
|
||||
apr_thread_mutex_t *mutex;
|
||||
};
|
||||
|
||||
/* Global reference to the pool passed into ssl_util_thread_setup() */
|
||||
apr_pool_t *dynlockpool = NULL;
|
||||
|
||||
|
Reference in New Issue
Block a user