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

« back to all changes in this revision

Viewing changes to srclib/apr-util/xml/expat/lib/xmltok_impl.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
/*
 
2
Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
 
3
See the file COPYING for copying permission.
 
4
*/
 
5
 
 
6
enum {
 
7
  BT_NONXML,
 
8
  BT_MALFORM,
 
9
  BT_LT,
 
10
  BT_AMP,
 
11
  BT_RSQB,
 
12
  BT_LEAD2,
 
13
  BT_LEAD3,
 
14
  BT_LEAD4,
 
15
  BT_TRAIL,
 
16
  BT_CR,
 
17
  BT_LF,
 
18
  BT_GT,
 
19
  BT_QUOT,
 
20
  BT_APOS,
 
21
  BT_EQUALS,
 
22
  BT_QUEST,
 
23
  BT_EXCL,
 
24
  BT_SOL,
 
25
  BT_SEMI,
 
26
  BT_NUM,
 
27
  BT_LSQB,
 
28
  BT_S,
 
29
  BT_NMSTRT,
 
30
  BT_COLON,
 
31
  BT_HEX,
 
32
  BT_DIGIT,
 
33
  BT_NAME,
 
34
  BT_MINUS,
 
35
  BT_OTHER, /* known not to be a name or name start character */
 
36
  BT_NONASCII, /* might be a name or name start character */
 
37
  BT_PERCNT,
 
38
  BT_LPAR,
 
39
  BT_RPAR,
 
40
  BT_AST,
 
41
  BT_PLUS,
 
42
  BT_COMMA,
 
43
  BT_VERBAR
 
44
};
 
45
 
 
46
#include <stddef.h>