X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=clients%2Fclient_options.h;h=16ce4beda0c2bbb28f45e83c12001f0463fe8e9c;hb=220ac91be6530bd992a7d2bde4310bb523075143;hp=a343133666b9377d7c7868446839f4c0442c8640;hpb=cc5be1b75fe90e8c73871f4bd135c9e7cf1d1984;p=awesomized%2Flibmemcached diff --git a/clients/client_options.h b/clients/client_options.h index a3431336..16ce4bed 100644 --- a/clients/client_options.h +++ b/clients/client_options.h @@ -1,9 +1,19 @@ -#ifndef __CLIENT_OPTIONS_H__ -#define __CLIENT_OPTIONS_H__ +/* LibMemcached + * Copyright (C) 2006-2009 Brian Aker + * All rights reserved. + * + * Use and distribution licensed under the BSD license. See + * the COPYING file in the parent directory for full text. + * + * Summary: + * + */ + +#pragma once typedef struct memcached_help_text_st memcached_help_text_st; -typedef enum { +enum memcached_options { OPT_SERVERS= 's', OPT_VERSION= 'V', OPT_HELP= 'h', @@ -24,6 +34,12 @@ typedef enum { OPT_FLUSH, OPT_HASH, OPT_BINARY, -} memcached_options; - -#endif /* CLIENT_OPTIONS */ + OPT_UDP, + OPT_BUFFER, + OPT_USERNAME, + OPT_PASSWD, + OPT_STAT_ARGS, + OPT_SERVER_VERSION, + OPT_QUIET, + OPT_FILE= 'f' +};