X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=clients%2Fmemrm.c;h=d4d93c2e9c2621e80b3bc56613889f715802f231;hb=f8782fd5273b05603f51c55065f1c570f9f9129d;hp=0f6ad4537449659371d164a3bab3a844a7c50849;hpb=7c986323bd4eece0d805f4df17eb03ea094f84f6;p=awesomized%2Flibmemcached diff --git a/clients/memrm.c b/clients/memrm.c index 0f6ad453..d4d93c2e 100644 --- a/clients/memrm.c +++ b/clients/memrm.c @@ -8,8 +8,8 @@ * Summary: * */ +#include "config.h" -#include "libmemcached/common.h" #include #include #include @@ -23,6 +23,8 @@ static int opt_verbose= 0; static time_t opt_expire= 0; static char *opt_servers= NULL; static char *opt_hash= NULL; +static char *opt_username; +static char *opt_passwd; #define PROGRAM_NAME "memrm" #define PROGRAM_DESCRIPTION "Erase a key or set of keys from a memcached cluster." @@ -36,7 +38,10 @@ int main(int argc, char *argv[]) memcached_return_t rc; memcached_server_st *servers; + int return_code= 0; + options_parse(argc, argv); + initialize_sockets(); if (!opt_servers) { @@ -59,7 +64,13 @@ int main(int argc, char *argv[]) memcached_server_list_free(servers); memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, (uint64_t) opt_binary); - + + if (!initialize_sasl(memc, opt_username, opt_passwd)) + { + memcached_free(memc); + return EXIT_FAILURE; + } + while (optind < argc) { if (opt_verbose) @@ -70,9 +81,11 @@ int main(int argc, char *argv[]) { fprintf(stderr, "memrm: %s: memcache error %s", argv[optind], memcached_strerror(memc, rc)); - if (memc->cached_errno) - fprintf(stderr, " system error %s", strerror(memc->cached_errno)); + if (memcached_last_error_errno(memc)) + fprintf(stderr, " system error %s", strerror(memcached_last_error_errno(memc))); fprintf(stderr, "\n"); + + return_code= -1; } optind++; @@ -82,10 +95,13 @@ int main(int argc, char *argv[]) if (opt_servers) free(opt_servers); + if (opt_hash) free(opt_hash); - return 0; + shutdown_sasl(); + + return return_code; } @@ -106,6 +122,8 @@ static void options_parse(int argc, char *argv[]) {(OPTIONSTRING)"expire", required_argument, NULL, OPT_EXPIRE}, {(OPTIONSTRING)"hash", required_argument, NULL, OPT_HASH}, {(OPTIONSTRING)"binary", no_argument, NULL, OPT_BINARY}, + {(OPTIONSTRING)"username", required_argument, NULL, OPT_USERNAME}, + {(OPTIONSTRING)"password", required_argument, NULL, OPT_PASSWD}, {0, 0, 0, 0}, }; int option_index= 0; @@ -143,6 +161,12 @@ static void options_parse(int argc, char *argv[]) case OPT_HASH: opt_hash= strdup(optarg); break; + case OPT_USERNAME: + opt_username= optarg; + break; + case OPT_PASSWD: + opt_passwd= optarg; + break; case '?': /* getopt_long already printed an error message. */ exit(1);