Remove all CVFLAG_* usage.

This commit is contained in:
Nick Mathewson 2019-09-05 11:48:50 -04:00 committed by David Goulet
parent 5ca5d196ac
commit 0d6d96396c
3 changed files with 4 additions and 15 deletions

View File

@ -267,10 +267,10 @@ DUMMY_TYPECHECK_INSTANCE(or_options_t);
#define VAR_NODUMP(varname,conftype,member,initvalue) \
CONFIG_VAR_ETYPE(or_options_t, varname, conftype, member, \
CVFLAG_NODUMP, initvalue)
CFLG_NODUMP, initvalue)
#define VAR_INVIS(varname,conftype,member,initvalue) \
CONFIG_VAR_ETYPE(or_options_t, varname, conftype, member, \
CVFLAG_NODUMP|CVFLAG_INVISIBLE, initvalue)
CFLG_NODUMP | CFLG_NOSET | CFLG_NOLIST, initvalue)
#define V(member,conftype,initvalue) \
VAR(#member, conftype, member, initvalue)

View File

@ -61,7 +61,8 @@
#define CONFIG_VAR_OBSOLETE(varname) \
{ .member = { .name = varname, .type = CONFIG_TYPE_OBSOLETE }, \
.flags = CVFLAG_OBSOLETE \
.flags = CFLG_NOSET | CFLG_NOLIST | CFLG_NODUMP | CFLG_NOCOPY | \
CFLG_NOCMP \
}
#endif /* !defined(TOR_LIB_CONF_CONFMACROS_H) */

View File

@ -169,18 +169,6 @@ typedef struct struct_magic_decl_t {
*/
#define CFLG_NOREPLACE (1u<<5)
/* Aliases for old individual options. These will get removed soon. */
#define CVFLAG_NODUMP CFLG_NODUMP
/** Set of options to make a flag invisible. */
#define CVFLAG_INVISIBLE \
(CFLG_NODUMP | CFLG_NOSET | CFLG_NOLIST)
/**
* Set of flags to indicate that a configuration option is obsolete.
**/
#define CVFLAG_OBSOLETE \
(CFLG_NOSET | CFLG_NOLIST | CFLG_NODUMP | CFLG_NOCOPY | CFLG_NOCMP)
/** A variable allowed in the configuration file or on the command line. */
typedef struct config_var_t {
struct_member_t member; /** A struct member corresponding to this