2 * Copyright (C) 2006-2009 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
15 #include <libmemcached-1.0/memcached.h>
16 #include "clients/client_options.h"
18 #if TIME_WITH_SYS_TIME
19 # include <sys/time.h>
23 # include <sys/time.h>
30 /* For some odd reason the option struct on solaris defines the argument
31 * as char* and not const char*
33 #define OPTIONSTRING char*
35 #define OPTIONSTRING const char*
38 typedef struct memcached_programs_help_st memcached_programs_help_st
;
40 struct memcached_programs_help_st
49 char *strdup_cleanup(const char *str
);
51 long int timedif(struct timeval a
, struct timeval b
);
52 void version_command(const char *command_name
);
53 void help_command(const char *command_name
, const char *description
,
54 const struct option
*long_options
,
55 memcached_programs_help_st
*options
);
56 void process_hash_option(memcached_st
*memc
, char *opt_hash
);
57 bool initialize_sasl(memcached_st
*memc
, char *user
, char *password
);
58 void shutdown_sasl(void);
59 void initialize_sockets(void);
60 void close_stdio(void);