You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
374 B
C

#ifndef TURNIP_H
#define TURNIP_H
#include <hiredis/async.h>
#include <time.h>
#include <sys/queue.h>
#include <event.h>
struct server {
struct conf *cfg;
struct event_base *base;
redisAsyncContext *ac;
struct event ev_reconnect;
struct timeval tv_reconnect;
};
void
turnip_connect(struct server *s);
14 years ago
struct server *
server_copy(const struct server *s);
#endif