~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to modules/ssl/ssl_expr_parse.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef YYERRCODE
 
2
#define YYERRCODE 256
 
3
#endif
 
4
 
 
5
#define T_TRUE 257
 
6
#define T_FALSE 258
 
7
#define T_DIGIT 259
 
8
#define T_ID 260
 
9
#define T_STRING 261
 
10
#define T_REGEX 262
 
11
#define T_REGEX_I 263
 
12
#define T_FUNC_FILE 264
 
13
#define T_OP_EQ 265
 
14
#define T_OP_NE 266
 
15
#define T_OP_LT 267
 
16
#define T_OP_LE 268
 
17
#define T_OP_GT 269
 
18
#define T_OP_GE 270
 
19
#define T_OP_REG 271
 
20
#define T_OP_NRE 272
 
21
#define T_OP_IN 273
 
22
#define T_OP_OID 274
 
23
#define T_OP_OR 275
 
24
#define T_OP_AND 276
 
25
#define T_OP_NOT 277
 
26
typedef union {
 
27
    char     *cpVal;
 
28
    ssl_expr *exVal;
 
29
} YYSTYPE;
 
30
extern YYSTYPE ssl_expr_yylval;