1 typedef union {
2 	int tv_int;
3 	char *tv_char;
4 	struct in_addr tv_ip;
5 	struct {
6 		int is_ip_aggr;
7 		char *s1;
8 		char *s2;
9 		char *s3;
10 	} tv_aggr;
11 } YYSTYPE;
12 #define	TOK_STRING	257
13 #define	TOK_INTEGER	258
14 #define	ERROR	259
15 #define	EQ	260
16 #define	AT	261
17 #define	SEMICOLON	262
18 #define	SLASH	263
19 #define	IFACE	264
20 #define	IFILE	265
21 #define	IPQ	266
22 #define	ULOG	267
23 #define	GROUP	268
24 #define	DIVERT	269
25 #define	TEE	270
26 #define	PORT	271
27 #define	INONLY	272
28 #define	PROMISC	273
29 #define	NETFLOW_SAMPLED	274
30 #define	NETFLOW_DISABLE	275
31 #define	FILTER	276
32 #define	CAPTURE_PORTS	277
33 #define	MEMSIZE	278
34 #define	BUFFERS	279
35 #define	RSH	280
36 #define	DUMP	281
37 #define	CHROOT	282
38 #define	UID	283
39 #define	GID	284
40 #define	AGGR	285
41 #define	STRIP	286
42 #define	INTO	287
43 #define	DENY	288
44 #define	ALLOW	289
45 #define	TIMEOUT	290
46 #define	TTL	291
47 #define	PIDFILE	292
48 #define	ADMIN	293
49 #define	BACKUP	294
50 #define	DEFAULT	295
51 #define	VIEW_ONLY	296
52 #define	NETFLOW	297
53 #define	EXPORT	298
54 #define	DESTINATION	299
55 #define	VERSION	300
56 #define	ACTIVE	301
57 #define	INACTIVE	302
58 #define	ENGINE_TYPE	303
59 #define	ENGINE_ID	304
60 #define	SAMPLING_MODE	305
61 #define	PACKET_INTERVAL	306
62 #define	IFCLASS	307
63 #define	MAPTO	308
64 
65 
66 extern YYSTYPE ipcacfglval;
67