summaryrefslogtreecommitdiffstats
path: root/rubbos/app/httpd-2.0.64/modules/ssl/ssl_expr_parse.h
blob: 5378e2874c5271d4c23c0fe9e8d909b784591b54 (plain)
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
typedef union {
    char     *cpVal;
    ssl_expr *exVal;
} YYSTYPE;
#define	T_TRUE	257
#define	T_FALSE	258
#define	T_DIGIT	259
#define	T_ID	260
#define	T_STRING	261
#define	T_REGEX	262
#define	T_REGEX_I	263
#define	T_FUNC_FILE	264
#define	T_OP_EQ	265
#define	T_OP_NE	266
#define	T_OP_LT	267
#define	T_OP_LE	268
#define	T_OP_GT	269
#define	T_OP_GE	270
#define	T_OP_REG	271
#define	T_OP_NRE	272
#define	T_OP_IN	273
#define	T_OP_OR	274
#define	T_OP_AND	275
#define	T_OP_NOT	276


extern YYSTYPE ssl_expr_yylval;