Style cleanup
[m6w6/libmemcached] / clients / client_options.h
1 /* LibMemcached
2 * Copyright (C) 2006-2009 Brian Aker
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 *
8 * Summary:
9 *
10 */
11
12 #pragma once
13
14 typedef struct memcached_help_text_st memcached_help_text_st;
15
16 enum memcached_options {
17 OPT_SERVERS= 's',
18 OPT_VERSION= 'V',
19 OPT_HELP= 'h',
20 OPT_VERBOSE= 'v',
21 OPT_DEBUG= 'd',
22 OPT_ANALYZE= 'a',
23 OPT_FLAG= 257,
24 OPT_EXPIRE,
25 OPT_SET,
26 OPT_REPLACE,
27 OPT_ADD,
28 OPT_SLAP_EXECUTE_NUMBER,
29 OPT_SLAP_INITIAL_LOAD,
30 OPT_SLAP_TEST,
31 OPT_SLAP_CONCURRENCY,
32 OPT_SLAP_NON_BLOCK,
33 OPT_SLAP_TCP_NODELAY,
34 OPT_FLUSH,
35 OPT_HASH,
36 OPT_BINARY,
37 OPT_UDP,
38 OPT_BUFFER,
39 OPT_USERNAME,
40 OPT_PASSWD,
41 OPT_STAT_ARGS,
42 OPT_SERVER_VERSION,
43 OPT_QUIET,
44 OPT_FILE= 'f'
45 };