diff options
| author | rcritten <> | 2005-05-31 14:32:42 +0000 |
|---|---|---|
| committer | rcritten <> | 2005-05-31 14:32:42 +0000 |
| commit | 102486d90b09d87c7666d70bfb0d01a564868d67 (patch) | |
| tree | 21d059a8a3035acda6ada54bed940541718eb349 /nss_expr_parse.h | |
| parent | b2aee9265a8f8b98a2e3a24a269c2b4b97882d08 (diff) | |
Changed function and configuration names so mod_nss can peacefully
co-exist with mod_ssl.
Diffstat (limited to 'nss_expr_parse.h')
| -rw-r--r-- | nss_expr_parse.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/nss_expr_parse.h b/nss_expr_parse.h new file mode 100644 index 0000000..09adf01 --- /dev/null +++ b/nss_expr_parse.h @@ -0,0 +1,27 @@ +typedef union { + char *cpVal; + nss_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 nss_expr_yylval; |
