summaryrefslogtreecommitdiff
path: root/src/cli_val.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli_val.h')
-rw-r--r--src/cli_val.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cli_val.h b/src/cli_val.h
index e6182e7..00ed103 100644
--- a/src/cli_val.h
+++ b/src/cli_val.h
@@ -30,7 +30,8 @@ typedef enum {
MACADDR_TYPE,
DOMAIN_TYPE, /*end of addr types */
TEXT_TYPE,
- BOOL_TYPE
+ BOOL_TYPE,
+ PRIORITY_TYPE
}vtw_type_e;
typedef enum {
@@ -65,6 +66,7 @@ typedef struct {
char *val;
int cnt; /* >0 means multivalue */
char **vals; /* We might union with val */
+ vtw_type_e *val_types; /* used with vals and multitypes */
boolean free_me;
}valstruct;