Adding prebuilt parser/scanner
[m6w6/libmemcached] / libmemcached / csl / parser.h
1 /* A Bison parser, made by GNU Bison 2.5. */
2
3 /* Bison interface for Yacc-like parsers in C
4
5 Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
6
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* As a special exception, you may create a larger work that contains
21 part or all of the Bison parser skeleton and distribute that work
22 under terms of your choice, so long as that work isn't itself a
23 parser generator using the skeleton or a modified version thereof
24 as a parser skeleton. Alternatively, if you modify or redistribute
25 the parser skeleton itself, you may (at your option) remove this
26 special exception, which will cause the skeleton and the resulting
27 Bison output files to be licensed under the GNU General Public
28 License without this special exception.
29
30 This special exception was added by the Free Software Foundation in
31 version 2.2 of Bison. */
32
33
34 /* Tokens. */
35 #ifndef YYTOKENTYPE
36 # define YYTOKENTYPE
37 /* Put the tokens into the symbol table, so that GDB and other debuggers
38 know about them. */
39 enum yytokentype {
40 COMMENT = 258,
41 END = 259,
42 ERROR = 260,
43 RESET = 261,
44 PARSER_DEBUG = 262,
45 INCLUDE = 263,
46 CONFIGURE_FILE = 264,
47 EMPTY_LINE = 265,
48 SERVER = 266,
49 SOCKET = 267,
50 SERVERS = 268,
51 SERVERS_OPTION = 269,
52 UNKNOWN_OPTION = 270,
53 UNKNOWN = 271,
54 BINARY_PROTOCOL = 272,
55 BUFFER_REQUESTS = 273,
56 CONNECT_TIMEOUT = 274,
57 DISTRIBUTION = 275,
58 HASH = 276,
59 HASH_WITH_NAMESPACE = 277,
60 IO_BYTES_WATERMARK = 278,
61 IO_KEY_PREFETCH = 279,
62 IO_MSG_WATERMARK = 280,
63 KETAMA_HASH = 281,
64 KETAMA_WEIGHTED = 282,
65 NOREPLY = 283,
66 NUMBER_OF_REPLICAS = 284,
67 POLL_TIMEOUT = 285,
68 RANDOMIZE_REPLICA_READ = 286,
69 RCV_TIMEOUT = 287,
70 REMOVE_FAILED_SERVERS = 288,
71 RETRY_TIMEOUT = 289,
72 SND_TIMEOUT = 290,
73 SOCKET_RECV_SIZE = 291,
74 SOCKET_SEND_SIZE = 292,
75 SORT_HOSTS = 293,
76 SUPPORT_CAS = 294,
77 USER_DATA = 295,
78 USE_UDP = 296,
79 VERIFY_KEY = 297,
80 _TCP_KEEPALIVE = 298,
81 _TCP_KEEPIDLE = 299,
82 _TCP_NODELAY = 300,
83 NAMESPACE = 301,
84 POOL_MIN = 302,
85 POOL_MAX = 303,
86 MD5 = 304,
87 CRC = 305,
88 FNV1_64 = 306,
89 FNV1A_64 = 307,
90 FNV1_32 = 308,
91 FNV1A_32 = 309,
92 HSIEH = 310,
93 MURMUR = 311,
94 JENKINS = 312,
95 CONSISTENT = 313,
96 MODULA = 314,
97 RANDOM = 315,
98 TRUE = 316,
99 FALSE = 317,
100 FLOAT = 318,
101 NUMBER = 319,
102 PORT = 320,
103 WEIGHT_START = 321,
104 IPADDRESS = 322,
105 HOSTNAME = 323,
106 STRING = 324,
107 QUOTED_STRING = 325,
108 FILE_PATH = 326
109 };
110 #endif
111
112
113
114 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
115
116 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
117 # define YYSTYPE_IS_DECLARED 1
118 #endif
119
120
121
122