mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
export glueing code
This commit is contained in:
parent
db097047af
commit
b231c33efa
3 changed files with 11 additions and 5 deletions
|
|
@ -1157,6 +1157,9 @@ LDAP_SLAPD_F (void) syncrepl_updateCookie LDAP_P((
|
|||
syncinfo_t *, LDAP *, Operation *, struct berval *,
|
||||
struct berval * ));
|
||||
LDAP_SLAPD_F (char **) str2clist LDAP_P(( char ***, char *, const char * ));
|
||||
|
||||
LDAP_SLAPD_F (void) syncrepl_add_glue LDAP_P(( syncinfo_t *, LDAP *, Operation*, Entry*,
|
||||
Modifications*, int, struct berval*, struct berval* ));
|
||||
#endif
|
||||
|
||||
LDAP_END_DECL
|
||||
|
|
|
|||
|
|
@ -40,10 +40,6 @@
|
|||
static void
|
||||
syncrepl_del_nonpresent( syncinfo_t *, LDAP *, Operation * );
|
||||
|
||||
static void
|
||||
syncrepl_add_glue( syncinfo_t *, LDAP *, Operation*, Entry*, Modifications*,
|
||||
int, struct berval*, struct berval* );
|
||||
|
||||
static int
|
||||
slap_mods_check_syncrepl( syncinfo_t *, Operation *, Modifications **,
|
||||
const char **, char *, size_t, void *ctx );
|
||||
|
|
@ -1115,7 +1111,7 @@ syncrepl_del_nonpresent(
|
|||
}
|
||||
|
||||
|
||||
static void
|
||||
void
|
||||
syncrepl_add_glue(
|
||||
syncinfo_t *si,
|
||||
LDAP *ld,
|
||||
|
|
|
|||
|
|
@ -268,4 +268,11 @@ char** str2clist( char ***out, char *in, const char *brkstr )
|
|||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void syncrepl_add_glue( syncinfo_t *si, LDAP *ld, Operation *op, Entry *e,
|
||||
Modifications *modlist, int syncstate, struct berval* syncUUID,
|
||||
struct berval* syncCookie )
|
||||
{
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue