]> git.sur5r.net Git - openldap/commitdiff
list of nonpresent entries in syncinfo_t
authorJong Hyuk Choi <jongchoi@openldap.org>
Wed, 30 Apr 2003 16:38:15 +0000 (16:38 +0000)
committerJong Hyuk Choi <jongchoi@openldap.org>
Wed, 30 Apr 2003 16:38:15 +0000 (16:38 +0000)
servers/slapd/slap.h

index 8684b7618406493b3905356dca036a9271e7a6c0..d27dec4be9aa65a92fb5b393de9fe320a9b610ed 100644 (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"