X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=clients%2Fmemcp.c;h=bf3828ae544ba64476a36887c101c9f8fa41873d;hb=6bc6cf720913ae042f36e62e09abce7d340607ab;hp=dd8aba9ac907e9001d6e823374e7cf498520af8f;hpb=3ddd6cf2902491eab9d6ecf6e30b0b324c7a6f1f;p=awesomized%2Flibmemcached diff --git a/clients/memcp.c b/clients/memcp.c index dd8aba9a..bf3828ae 100644 --- a/clients/memcp.c +++ b/clients/memcp.c @@ -9,7 +9,8 @@ * */ -#include "libmemcached/common.h" +#include "config.h" + #include #include #include @@ -22,6 +23,10 @@ #include #include #include +#include +#include +#include + #include @@ -41,6 +46,8 @@ static char *opt_hash= NULL; static int opt_method= OPT_SET; static uint32_t opt_flags= 0; static time_t opt_expires= 0; +static char *opt_username; +static char *opt_passwd; static long strtol_wrapper(const char *nptr, int base, bool *error) { @@ -56,13 +63,13 @@ static long strtol_wrapper(const char *nptr, int base, bool *error) || (errno != 0 && val == 0)) { *error= true; - return 0; + return EXIT_SUCCESS; } if (endptr == nptr) { *error= true; - return 0; + return EXIT_SUCCESS; } *error= false; @@ -78,6 +85,7 @@ int main(int argc, char *argv[]) int return_code= 0; options_parse(argc, argv); + initialize_sockets(); memc= memcached_create(NULL); process_hash_option(memc, opt_hash); @@ -106,6 +114,11 @@ 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) { @@ -175,8 +188,8 @@ int main(int argc, char *argv[]) { fprintf(stderr, "memcp: %s: memcache error %s", ptr, 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; @@ -193,6 +206,7 @@ int main(int argc, char *argv[]) free(opt_servers); if (opt_hash) free(opt_hash); + shutdown_sasl(); return return_code; } @@ -221,6 +235,8 @@ static void options_parse(int argc, char *argv[]) {(OPTIONSTRING)"replace", no_argument, NULL, OPT_REPLACE}, {(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}, }; @@ -285,7 +301,13 @@ static void options_parse(int argc, char *argv[]) case OPT_HASH: opt_hash= strdup(optarg); break; - case '?': + case OPT_USERNAME: + opt_username= optarg; + break; + case OPT_PASSWD: + opt_passwd= optarg; + break; + case '?': /* getopt_long already printed an error message. */ exit(1); default: