1 #ifndef BISON_PARSE_TAB_H
2 # define BISON_PARSE_TAB_H
3 
4 #ifndef YYSTYPE
5 typedef union {
6 	int inum;
7 	char *ptr;
8 	buf_t buf;
9 } yystype;
10 # define YYSTYPE yystype
11 # define YYSTYPE_IS_TRIVIAL 1
12 #endif
13 # define	NUMBER	257
14 # define	COLON	258
15 # define	SBRACE	259
16 # define	EBRACE	260
17 # define	BOOL	261
18 # define	TCPFLAG	262
19 # define	BROKENCRC	263
20 # define	SOURCEPORT	264
21 # define	DESTPORT	265
22 # define	READFILE	266
23 # define	INTERFACE	267
24 # define	WATCHICMP	268
25 # define	LISTENDRONE	269
26 # define	SCANMODE	270
27 # define	TCPFLAGS	271
28 # define	DEFPAYLOAD	272
29 # define	MODULEDIR	273
30 # define	STACKLAYER	274
31 # define	NOPATIENCE	275
32 # define	COMMA	276
33 # define	SRCADDR	277
34 # define	RANDOM	278
35 # define	SENDFRAGS	279
36 # define	SHUFFLE	280
37 # define	IPTTL	281
38 # define	IPTOS	282
39 # define	FINGERPRINT	283
40 # define	SAVEFILE	284
41 # define	DRONES	285
42 # define	IDLEHOSTS	286
43 # define	IDLESCAN	287
44 # define	STR	288
45 # define	BSTR	289
46 # define	PPS	290
47 # define	PAYLOADS	291
48 # define	IPPROTOCOLS	292
49 # define	DANGEROUS	293
50 # define	RECVTIMEOUT	294
51 # define	SEMICOLON	295
52 # define	SENDDRONE	296
53 # define	SCANTYPE	297
54 # define	PCAPFILTER	298
55 # define	VERBOSE	299
56 # define	DOTQUAD	300
57 # define	GLOBAL	301
58 # define	REPEATS	302
59 # define	NOTHING	303
60 
61 
62 extern YYSTYPE yylval;
63 
64 #endif /* not BISON_PARSE_TAB_H */
65