mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 05:30:07 -05:00
Add missing function declarations in config.h
This commit is contained in:
parent
ba5305eea4
commit
da1c57ff3e
2 changed files with 10 additions and 3 deletions
|
|
@ -78,9 +78,6 @@ static int fp_parse_line(ConfigArgs *c);
|
|||
|
||||
static char *strtok_quote(char *line, char *sep, char **quote_ptr);
|
||||
|
||||
int read_config_file(const char *fname, int depth, ConfigArgs *cf,
|
||||
ConfigTable *cft );
|
||||
|
||||
ConfigArgs *
|
||||
new_config_args( BackendDB *be, const char *fname, int lineno, int argc, char **argv )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -154,8 +154,18 @@ typedef struct config_args_s {
|
|||
#define value_ndn values.v_dn.vdn_ndn
|
||||
|
||||
int config_register_schema(ConfigTable *ct, ConfigOCs *co);
|
||||
int config_del_vals(ConfigTable *cf, ConfigArgs *c);
|
||||
int config_get_vals(ConfigTable *ct, ConfigArgs *c);
|
||||
int config_add_vals(ConfigTable *ct, ConfigArgs *c);
|
||||
|
||||
void init_config_argv( ConfigArgs *c );
|
||||
int init_config_attrs(ConfigTable *ct);
|
||||
int init_config_ocs( ConfigOCs *ocs );
|
||||
int config_parse_vals(ConfigTable *ct, ConfigArgs *c, int valx);
|
||||
int config_parse_add(ConfigTable *ct, ConfigArgs *c);
|
||||
int read_config_file(const char *fname, int depth, ConfigArgs *cf,
|
||||
ConfigTable *cft );
|
||||
|
||||
ConfigTable * config_find_keyword(ConfigTable *ct, ConfigArgs *c);
|
||||
Entry * config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent,
|
||||
ConfigArgs *c, struct berval *rdn, ConfigOCs *main, ConfigOCs *extra );
|
||||
|
|
|
|||
Loading…
Reference in a new issue