mirror of
https://github.com/fluencelabs/redis
synced 2025-06-18 19:51:22 +00:00
Cluster: cluster stuff moved from redis.h to cluster.h.
This commit is contained in:
@ -29,6 +29,7 @@
|
||||
*/
|
||||
|
||||
#include "redis.h"
|
||||
#include "cluster.h"
|
||||
#include "endianconv.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
@ -38,6 +39,8 @@
|
||||
#include <unistd.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
clusterNode *createClusterNode(char *nodename, int flags);
|
||||
int clusterAddNode(clusterNode *node);
|
||||
void clusterAcceptHandler(aeEventLoop *el, int fd, void *privdata, int mask);
|
||||
void clusterReadHandler(aeEventLoop *el, int fd, void *privdata, int mask);
|
||||
void clusterSendPing(clusterLink *link, int type);
|
||||
|
Reference in New Issue
Block a user