rsstats 0.0.1
Redis Enterprise Statistic collector
cluster.h
Go to the documentation of this file.
1
21#ifndef __CLUSTER_H__
22#define __CLUSTER_H__
23
24typedef struct cluster_s {
25 unsigned short int enabled;
26 char* host;
27 char* user;
28 char* pass;
29 char* insecure;
30 char* cacert;
32
33#endif /* __CLUSTER_H__ */
34/* vim: set tw=80: */
struct cluster_s cluster_t
char * host
Definition: cluster.h:26
char * insecure
Definition: cluster.h:29
unsigned short int enabled
Definition: cluster.h:25
char * pass
Definition: cluster.h:28
char * user
Definition: cluster.h:27
char * cacert
Definition: cluster.h:30