Add ability to have version "just requested" when you initially connect.
[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 FETCH_VERSION = 301,
84 NAMESPACE = 302,
85 POOL_MIN = 303,
86 POOL_MAX = 304,
87 MD5 = 305,
88 CRC = 306,
89 FNV1_64 = 307,
90 FNV1A_64 = 308,
91 FNV1_32 = 309,
92 FNV1A_32 = 310,
93 HSIEH = 311,
94 MURMUR = 312,
95 JENKINS = 313,
96 CONSISTENT = 314,
97 MODULA = 315,
98 RANDOM = 316,
99 TRUE = 317,
100 FALSE = 318,
101 FLOAT = 319,
102 NUMBER = 320,
103 PORT = 321,
104 WEIGHT_START = 322,
105 IPADDRESS = 323,
106 HOSTNAME = 324,
107 STRING = 325,
108 QUOTED_STRING = 326,
109 FILE_PATH = 327
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