mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-09 08:23:35 -05:00
list of nonpresent entries in syncinfo_t
This commit is contained in:
parent
e08ba25101
commit
c4f7bcfc56
1 changed files with 8 additions and 0 deletions
|
|
@ -1269,6 +1269,13 @@ typedef BackendDB Backend;
|
|||
#define backends backendDB
|
||||
|
||||
#ifdef LDAP_SYNCREPL
|
||||
|
||||
struct nonpresent_entry {
|
||||
struct berval *dn;
|
||||
struct berval *ndn;
|
||||
LDAP_LIST_ENTRY(nonpresent_entry) np_link;
|
||||
};
|
||||
|
||||
/*
|
||||
* syncinfo structure for syncrepl
|
||||
*/
|
||||
|
|
@ -1314,6 +1321,7 @@ typedef struct syncinfo_s {
|
|||
struct berval *syncUUID;
|
||||
struct berval *syncCookie;
|
||||
Avlnode *presentlist;
|
||||
LDAP_LIST_HEAD(np, nonpresent_entry) nonpresentlist;
|
||||
} syncinfo_t;
|
||||
|
||||
#define IDSTR "id"
|
||||
|
|
|
|||
Loading…
Reference in a new issue