mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-01 04:29:35 -05:00
allow proxying of dynamic objects (irrespective of the support provided to dynamic objects)
This commit is contained in:
parent
3037a199d4
commit
18beda81a0
1 changed files with 10 additions and 0 deletions
|
|
@ -41,6 +41,16 @@ ldap_back_open( BackendInfo *bi )
|
|||
int
|
||||
ldap_back_initialize( BackendInfo *bi )
|
||||
{
|
||||
bi->bi_flags =
|
||||
#ifdef LDAP_DYNAMIC_OBJECTS
|
||||
/* this is set because all the support a proxy has to provide
|
||||
* is the capability to forward the refresh exop, and to
|
||||
* pass thru entries that contain the dynamicObject class
|
||||
* and the entryTtl attribute */
|
||||
SLAP_BFLAG_DYNAMIC |
|
||||
#endif /* LDAP_DYNAMIC_OBJECTS */
|
||||
0;
|
||||
|
||||
bi->bi_open = ldap_back_open;
|
||||
bi->bi_config = 0;
|
||||
bi->bi_close = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue