mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-02-17 14:00:30 +08:00
Filled in Cyrus SASL authz/storage callbacks for all backends
(callbacks not yet implemented though).
This commit is contained in:
parent
736b8d0a24
commit
a1ccf169da
@ -102,6 +102,12 @@ bdb2_back_initialize(
|
||||
bi->bi_tool_index_change = bdb2_tool_index_change;
|
||||
bi->bi_tool_sync = bdb2_tool_sync;
|
||||
|
||||
#ifdef HAVE_CYRUS_SASL
|
||||
bi->bi_sasl_authorize = 0;
|
||||
bi->bi_sasl_getsecret = 0;
|
||||
bi->bi_sasl_putsecret = 0;
|
||||
#endif /* HAVE_CYRUS_SASL */
|
||||
|
||||
bi->bi_connection_init = 0;
|
||||
bi->bi_connection_destroy = 0;
|
||||
|
||||
|
@ -76,6 +76,12 @@ ldap_back_initialize(
|
||||
|
||||
bi->bi_acl_group = 0;
|
||||
|
||||
#ifdef HAVE_CYRUS_SASL
|
||||
bi->bi_sasl_authorize = 0;
|
||||
bi->bi_sasl_getsecret = 0;
|
||||
bi->bi_sasl_putsecret = 0;
|
||||
#endif /* HAVE_CYRUS_SASL */
|
||||
|
||||
bi->bi_connection_init = 0;
|
||||
bi->bi_connection_destroy = ldap_back_conn_destroy;
|
||||
|
||||
|
@ -83,10 +83,10 @@ ldbm_back_initialize(
|
||||
bi->bi_tool_sync = ldbm_tool_sync;
|
||||
|
||||
#ifdef HAVE_CYRUS_SASL
|
||||
bi->bi_sasl_authorize = 0; /* ldbm_sasl_authorize; */
|
||||
bi->bi_sasl_getsecret = 0; /* ldbm_sasl_getsecret; */
|
||||
bi->bi_sasl_putsecret = 0; /* ldbm_sasl_putsecret; */
|
||||
#endif
|
||||
bi->bi_sasl_authorize = 0;
|
||||
bi->bi_sasl_getsecret = 0;
|
||||
bi->bi_sasl_putsecret = 0;
|
||||
#endif /* HAVE_CYRUS_SASL */
|
||||
|
||||
bi->bi_connection_init = 0;
|
||||
bi->bi_connection_destroy = 0;
|
||||
|
@ -55,6 +55,12 @@ passwd_back_initialize(
|
||||
|
||||
bi->bi_acl_group = 0;
|
||||
|
||||
#ifdef HAVE_CYRUS_SASL
|
||||
bi->bi_sasl_authorize = 0;
|
||||
bi->bi_sasl_getsecret = 0;
|
||||
bi->bi_sasl_putsecret = 0;
|
||||
#endif /* HAVE_CYRUS_SASL */
|
||||
|
||||
bi->bi_connection_init = 0;
|
||||
bi->bi_connection_destroy = 0;
|
||||
|
||||
|
@ -100,6 +100,12 @@ perl_back_initialize(
|
||||
|
||||
bi->bi_acl_group = 0;
|
||||
|
||||
#ifdef HAVE_CYRUS_SASL
|
||||
bi->bi_sasl_authorize = 0;
|
||||
bi->bi_sasl_getsecret = 0;
|
||||
bi->bi_sasl_putsecret = 0;
|
||||
#endif /* HAVE_CYRUS_SASL */
|
||||
|
||||
bi->bi_connection_init = 0;
|
||||
bi->bi_connection_destroy = 0;
|
||||
|
||||
|
@ -55,6 +55,12 @@ shell_back_initialize(
|
||||
|
||||
bi->bi_acl_group = 0;
|
||||
|
||||
#ifdef HAVE_CYRUS_SASL
|
||||
bi->bi_sasl_authorize = 0;
|
||||
bi->bi_sasl_getsecret = 0;
|
||||
bi->bi_sasl_putsecret = 0;
|
||||
#endif /* HAVE_CYRUS_SASL */
|
||||
|
||||
bi->bi_connection_init = 0;
|
||||
bi->bi_connection_destroy = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user