X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fconfig.h;h=e99d00954785e8061c5fbe6ddc17be0cf9307ecc;hb=1939ed3fc29d0d1c01a0a9390d2c51ac2a85260f;hp=735471a1fc591bfba86d95fa00f4d4f7506129ae;hpb=7841f4f53834cedca7fca83291da16849ec85277;p=openldap diff --git a/servers/slapd/config.h b/servers/slapd/config.h index 735471a1fc..e99d009547 100644 --- a/servers/slapd/config.h +++ b/servers/slapd/config.h @@ -2,7 +2,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2005 The OpenLDAP Foundation. + * Copyright 1998-2006 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -43,19 +43,19 @@ typedef enum { } ConfigType; #define ARGS_USERLAND 0x00000fff -#define ARGS_TYPES 0x000ff000 -#define ARGS_POINTER 0x0003f000 -#define ARGS_NUMERIC 0x0000f000 + +/* types are enumerated, not a bitmask */ +#define ARGS_TYPES 0x0000f000 #define ARG_INT 0x00001000 #define ARG_LONG 0x00002000 -#define ARG_BER_LEN_T 0x00004000 -#define ARG_ON_OFF 0x00008000 -#define ARG_STRING 0x00010000 -#define ARG_BERVAL 0x00020000 -#define ARG_DN 0x00040000 -#define ARG_IGNORED 0x00080000 +#define ARG_BER_LEN_T 0x00003000 +#define ARG_ON_OFF 0x00004000 +#define ARG_STRING 0x00005000 +#define ARG_BERVAL 0x00006000 +#define ARG_DN 0x00007000 -#define ARGS_SYNTAX 0xfff00000 +#define ARGS_SYNTAX 0xffff0000 +#define ARG_IGNORED 0x00080000 #define ARG_PRE_BI 0x00100000 #define ARG_PRE_DB 0x00200000 #define ARG_DB 0x00400000 /* Only applies to DB */ @@ -165,7 +165,7 @@ 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 config_parse_add(ConfigTable *ct, ConfigArgs *c, int valx); int read_config_file(const char *fname, int depth, ConfigArgs *cf, ConfigTable *cft );