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.

43 lines
632 B
C

#ifndef SERVER_H
#define SERVER_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;
/* server socket and event struct */
int fd;
struct event ev;
struct event ev_reconnect;
struct timeval tv_reconnect;
};
void
webdis_connect(struct server *s);
struct server *
server_new(const char *filename);
void
server_free(struct server *s);
struct server *
server_copy(const struct server *s);
void
server_start(struct server *s);
void
webdis_log(struct server *s, int level, const char *body);
#endif