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