Updated for help commands (and a little bit on ketama)
[awesomized/libmemcached] / src / client_options.h
1 #ifndef __CLIENT_OPTIONS_H__
2 #define __CLIENT_OPTIONS_H__
3
4 typedef struct memcached_help_text_st memcached_help_text_st;
5
6 typedef enum {
7 OPT_SERVERS= 's',
8 OPT_VERSION= 'V',
9 OPT_HELP= 'h',
10 OPT_VERBOSE= 'v',
11 OPT_DEBUG= 'd',
12 OPT_FLAG= 257,
13 OPT_EXPIRE,
14 OPT_SET,
15 OPT_REPLACE,
16 OPT_ADD,
17 OPT_SLAP_EXECUTE_NUMBER,
18 OPT_SLAP_INITIAL_LOAD,
19 OPT_SLAP_TEST,
20 OPT_SLAP_CONCURRENCY,
21 OPT_SLAP_NON_BLOCK,
22 OPT_SLAP_TCP_NODELAY,
23 OPT_FLUSH,
24 } memcached_options;
25
26 #endif /* CLIENT_OPTIONS */