X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=clients%2Futilities.c;h=b9795246539156792616a4824658417d2aaa95f9;hb=a07bb255b72aa59d0f4c4c63bb71695b2e9df537;hp=b5755ee12139dab629e23a342ef786b8b94049f0;hpb=b6baa1deacc15196103d3474e5b23e79c11bec93;p=awesomized%2Flibmemcached diff --git a/clients/utilities.c b/clients/utilities.c index b5755ee1..b9795246 100644 --- a/clients/utilities.c +++ b/clients/utilities.c @@ -1,3 +1,4 @@ +#include "libmemcached/common.h" #include #include #include @@ -21,7 +22,7 @@ void version_command(char *command_name) exit(0); } -char *lookup_help(memcached_options option) +static char *lookup_help(memcached_options option) { switch (option) { @@ -43,6 +44,9 @@ char *lookup_help(memcached_options option) case OPT_SLAP_TCP_NODELAY: return("Set TCP socket up to use nodelay."); case OPT_FLUSH: return("Flush servers before running tests."); case OPT_HASH: return("Select hash type."); + case OPT_BINARY: return("Switch to binary protocol."); + case OPT_ANALYZE: return("Analyze the provided servers."); + case OPT_UDP: return("Use UDP protocol when communicating with server."); }; WATCHPOINT_ASSERT(0); @@ -51,7 +55,7 @@ char *lookup_help(memcached_options option) void help_command(char *command_name, char *description, const struct option *long_options, - memcached_programs_help_st *options) + memcached_programs_help_st *options __attribute__((unused))) { unsigned int x;