version 1.18.2.7, 2000/07/29 01:53:13
|
version 1.18.2.8, 2000/09/20 19:32:41
|
Line 1
|
Line 1
|
/* init.c - initialize various things */ |
/* init.c - initialize various things */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/init.c,v 1.18.2.6 2000/07/04 20:10:00 kurt Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/init.c,v 1.18.2.7 2000/07/29 01:53:13 kurt Exp $ */ |
/* |
/* |
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. |
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. |
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file |
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file |
Line 40 char **g_argv;
|
Line 40 char **g_argv;
|
*/ |
*/ |
ldap_pvt_thread_pool_t connection_pool; |
ldap_pvt_thread_pool_t connection_pool; |
ldap_pvt_thread_mutex_t gmtime_mutex; |
ldap_pvt_thread_mutex_t gmtime_mutex; |
#ifdef SLAPD_CRYPT |
#if defined( SLAPD_CRYPT ) || defined( SLAPD_PASSWD ) |
ldap_pvt_thread_mutex_t crypt_mutex; |
ldap_pvt_thread_mutex_t passwd_mutex; |
#endif |
#endif |
|
|
int num_conns; |
int num_conns; |
Line 103 slap_init( int mode, const char *name )
|
Line 103 slap_init( int mode, const char *name )
|
ldap_pvt_thread_mutex_init( &num_sent_mutex ); |
ldap_pvt_thread_mutex_init( &num_sent_mutex ); |
|
|
ldap_pvt_thread_mutex_init( &gmtime_mutex ); |
ldap_pvt_thread_mutex_init( &gmtime_mutex ); |
#ifdef SLAPD_CRYPT |
#if defined( SLAPD_CRYPT ) || defined( SLAPD_PASSWD ) |
ldap_pvt_thread_mutex_init( &crypt_mutex ); |
ldap_pvt_thread_mutex_init( &passwd_mutex ); |
#endif |
#endif |
|
|
rc = slap_sasl_init(); |
rc = slap_sasl_init(); |