ipfw3: 'or' supports more filters
[dragonfly.git] / usr.sbin / ndiscvt / inf.h
blob6367f3edab78bdf466cac8b1d7aaef70fb4b48d8
1 /*
2 * $Id: inf.h,v 1.3 2003/11/30 21:58:16 winter Exp $
4 * $FreeBSD: src/usr.sbin/ndiscvt/inf.h,v 1.1 2003/12/11 22:38:14 wpaul Exp $
5 */
7 #define W_MAX 16
9 struct section {
10 const char * name;
12 TAILQ_ENTRY(section) link;
14 TAILQ_HEAD(section_head, section);
16 struct assign {
17 struct section *section;
19 const char * key;
20 const char * vals[W_MAX];
22 TAILQ_ENTRY(assign) link;
24 TAILQ_HEAD(assign_head, assign);
26 struct reg {
27 struct section *section;
29 const char * root;
30 const char * subkey;
31 const char * key;
32 u_int flags;
33 const char * value;
35 TAILQ_ENTRY(reg) link;
37 TAILQ_HEAD(reg_head, reg);
39 #define FLG_ADDREG_TYPE_SZ 0x00000000
40 #define FLG_ADDREG_BINVALUETYPE 0x00000001
41 #define FLG_ADDREG_NOCLOBBER 0x00000002
42 #define FLG_ADDREG_DELVAL 0x00000004
43 #define FLG_ADDREG_APPEND 0x00000008
44 #define FLG_ADDREG_KEYONLY 0x00000010
45 #define FLG_ADDREG_OVERWRITEONLY 0x00000020
46 #define FLG_ADDREG_64BITKEY 0x00001000
47 #define FLG_ADDREG_KEYONLY_COMMON 0x00002000
48 #define FLG_ADDREG_32BITKEY 0x00004000
49 #define FLG_ADDREG_TYPE_MULTI_SZ 0x00010000
50 #define FLG_ADDREG_TYPE_EXPAND_SZ 0x00020000
51 #define FLG_ADDREG_TYPE_DWORD 0x00010001
52 #define FLG_ADDREG_TYPE_NONE 0x00020001
54 extern void section_add (const char *);
55 extern void assign_add (const char *);
56 extern void define_add (const char *);
57 extern void regkey_add (const char *);
59 extern void push_word (const char *);
60 extern void clear_words (void);
61 extern int inf_parse (FILE *, FILE *);