mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
list of nonpresent entries in syncinfo_t
This commit is contained in:
parent
e08ba25101
commit
c4f7bcfc56
@ -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 New Issue
Block a user