File: grammar.h

package info (click to toggle)
rlinetd 0.5.1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 980 kB
  • ctags: 784
  • sloc: sh: 7,352; ansic: 4,883; yacc: 1,315; lex: 111; makefile: 73; perl: 4
file content (69 lines) | stat: -rw-r--r-- 1,364 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
typedef union {
	long num;
	char *cp;
	struct passwd *uid;
	struct group *gid;
	struct opmetalist *opml;
	struct opmeta *opm;
	rlim_t rl;
} YYSTYPE;
#define	T_SERVICE	257
#define	T_PORT	258
#define	T_EXEC	259
#define	T_PROTO	260
#define	T_UDP	261
#define	T_TCP	262
#define	T_UID	263
#define	T_GID	264
#define	T_BACKLOG	265
#define	T_INSTANCES	266
#define	T_DEFAULT	267
#define	T_NICE	268
#define	T_INTERFACE	269
#define	T_FISH	270
#define	T_CHROOT	271
#define	T_SERVER	272
#define	T_DIR	273
#define	T_RPC	274
#define	T_VERSION	275
#define	T_NAME	276
#define	T_WRAP	277
#define	T_CAPS	278
#define	T_FAMILY	279
#define	T_IPV4	280
#define	T_IPV6	281
#define	T_INITGROUPS	282
#define	T_BANNER	283
#define	T_ECHO	284
#define	T_DISCARD	285
#define	T_FILTER	286
#define	T_CHARGEN	287
#define	T_LOOPBACK	288
#define	T_RLIMIT	289
#define	T_LIM_CPU	290
#define	T_LIM_FSIZE	291
#define	T_LIM_DATA	292
#define	T_LIM_STACK	293
#define	T_LIM_CORE	294
#define	T_LIM_RSS	295
#define	T_LIM_NPROC	296
#define	T_LIM_NOFILE	297
#define	T_LIM_MEMLOCK	298
#define	T_LIM_INFINITY	299
#define	T_SOFT	300
#define	T_HARD	301
#define	T_LOG	302
#define	T_PIPE	303
#define	T_SYSLOG	304
#define	T_PATH	305
#define	T_MODE	306
#define	T_ACCEPT	307
#define	T_DENY	308
#define	T_CLOSE	309
#define	T_EXIT	310
#define	T_NUMERIC	311
#define	T_QSTRING	312
#define	T_IPADDR	313


extern YYSTYPE yylval;