testing: tsan
[m6w6/libmemcached] / src / bin / common / client_options.h
1 /*
2 +--------------------------------------------------------------------+
3 | libmemcached - C/C++ Client Library for memcached |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted under the terms of the BSD license. |
7 | You should have received a copy of the license in a bundled file |
8 | named LICENSE; in case you did not receive a copy you can review |
9 | the terms online at: https://opensource.org/licenses/BSD-3-Clause |
10 +--------------------------------------------------------------------+
11 | Copyright (c) 2006-2014 Brian Aker https://datadifferential.com/ |
12 | Copyright (c) 2020 Michael Wallner <mike@php.net> |
13 +--------------------------------------------------------------------+
14 */
15
16 #pragma once
17
18 typedef struct memcached_help_text_st memcached_help_text_st;
19
20 enum memcached_options {
21 OPT_SERVERS = 's',
22 OPT_VERSION = 'V',
23 OPT_HELP = 'h',
24 OPT_VERBOSE = 'v',
25 OPT_DEBUG = 'd',
26 OPT_ANALYZE = 'a',
27 OPT_FLAG = 257,
28 OPT_EXPIRE,
29 OPT_SET,
30 OPT_REPLACE,
31 OPT_ADD,
32 OPT_SLAP_EXECUTE_NUMBER,
33 OPT_SLAP_INITIAL_LOAD,
34 OPT_SLAP_TEST,
35 OPT_SLAP_CONCURRENCY,
36 OPT_SLAP_NON_BLOCK,
37 OPT_SLAP_TCP_NODELAY,
38 OPT_FLUSH,
39 OPT_HASH,
40 OPT_BINARY,
41 OPT_UDP,
42 OPT_BUFFER,
43 OPT_USERNAME,
44 OPT_PASSWD,
45 OPT_STAT_ARGS,
46 OPT_SERVER_VERSION,
47 OPT_QUIET,
48 OPT_FILE = 'f'
49 };