projects
/
m6w6
/
libmemcached
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
Delete useless code.
[m6w6/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_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
OPT_HASH
,
25
OPT_BINARY
,
26
}
memcached_options
;
27
28
#endif
/* CLIENT_OPTIONS */