~brianaker/libmemcached/embedded

« back to all changes in this revision

Viewing changes to clients/client_options.h

  • Committer: brian@gir-2.local
  • Date: 2008-03-10 15:04:41 UTC
  • mto: (317.6.1)
  • mto: This revision was merged to the branch mainline in revision 321.
  • Revision ID: brian@gir-2.local-20080310150441-jyhbjx6bwo46f6tg
Huge refactoring of directory structure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
} memcached_options;
 
26
 
 
27
#endif /* CLIENT_OPTIONS */