diff options
Diffstat (limited to 'ldap/servers/plugins/replication/repl_entry.c')
-rw-r--r-- | ldap/servers/plugins/replication/repl_entry.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/ldap/servers/plugins/replication/repl_entry.c b/ldap/servers/plugins/replication/repl_entry.c new file mode 100644 index 00000000..83bf2857 --- /dev/null +++ b/ldap/servers/plugins/replication/repl_entry.c @@ -0,0 +1,38 @@ +/** BEGIN COPYRIGHT BLOCK + * Copyright 2001 Sun Microsystems, Inc. + * Portions copyright 1999, 2001-2003 Netscape Communications Corporation. + * All rights reserved. + * END COPYRIGHT BLOCK **/ + +#include "slapi-plugin.h" +#include "repl.h" + +static int dumping_to_ldif= 0; +static int doing_replica_init= 0; +static char **include_suffix= NULL; + +/* + * This is passed the slapd command line arguments. + */ +void +repl_entry_init(int argc, char** argv) +{ + int i; + for(i=1;i<argc;i++) + { + if(strcmp(argv[i],"db2ldif")==0) + { + dumping_to_ldif= 1; + } + if(strcmp(argv[i],"-r")==0) + { + doing_replica_init= 1; + } + if(strcmp(argv[i],"-s")==0) + { + char *s= slapi_dn_normalize ( slapi_ch_strdup(argv[i+1]) ); + charray_add(&include_suffix,s); + i++; + } + } +} |