
Add the -x option (Read last argument from STDIN) on redis-benchmark. Other changes: To be able to use the code from redis-cli some helper methods were moved to cli_common.(h|c) Co-authored-by: Oran Agra <oran@redislabs.com>
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
#ifndef __CLICOMMON_H
|
|
#define __CLICOMMON_H
|
|
|
|
#include <hiredis.h>
|
|
#include <sdscompat.h> /* Use hiredis' sds compat header that maps sds calls to their hi_ variants */
|
|
|
|
typedef struct cliSSLconfig {
|
|
/* Requested SNI, or NULL */
|
|
char *sni;
|
|
/* CA Certificate file, or NULL */
|
|
char *cacert;
|
|
/* Directory where trusted CA certificates are stored, or NULL */
|
|
char *cacertdir;
|
|
/* Skip server certificate verification. */
|
|
int skip_cert_verify;
|
|
/* Client certificate to authenticate with, or NULL */
|
|
char *cert;
|
|
/* Private key file to authenticate with, or NULL */
|
|
char *key;
|
|
/* Preferred cipher list, or NULL (applies only to <= TLSv1.2) */
|
|
char* ciphers;
|
|
/* Preferred ciphersuites list, or NULL (applies only to TLSv1.3) */
|
|
char* ciphersuites;
|
|
} cliSSLconfig;
|
|
|
|
int cliSecureConnection(redisContext *c, cliSSLconfig config, const char **err);
|
|
|
|
ssize_t cliWriteConn(redisContext *c, const char *buf, size_t buf_len);
|
|
|
|
int cliSecureInit();
|
|
|
|
sds readArgFromStdin(void);
|
|
|
|
sds *getSdsArrayFromArgv(int argc,char **argv, int quoted);
|
|
|
|
sds unquoteCString(char *str);
|
|
|
|
#endif /* __CLICOMMON_H */
|