list of nonpresent entries in syncinfo_t

This commit is contained in:
Jong Hyuk Choi 2003-04-30 16:38:15 +00:00
parent e08ba25101
commit c4f7bcfc56

View File

@ -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"