udp support in fire and forget mode for all ops but get/gets, stat and version
[awesomized/libmemcached] / clients / 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_ANALYZE= 'a',
13 OPT_FLAG= 257,
14 OPT_EXPIRE,
15 OPT_SET,
16 OPT_REPLACE,
17 OPT_ADD,
18 OPT_SLAP_EXECUTE_NUMBER,
19 OPT_SLAP_INITIAL_LOAD,
20 OPT_SLAP_TEST,
21 OPT_SLAP_CONCURRENCY,
22 OPT_SLAP_NON_BLOCK,
23 OPT_SLAP_TCP_NODELAY,
24 OPT_FLUSH,
25 OPT_HASH,
26 OPT_BINARY,
27 OPT_UDP
28 } memcached_options;
29
30 #endif /* CLIENT_OPTIONS */