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.

51 lines
832 B
C

#ifndef CMD_H
#define CMD_H
#include <stdlib.h>
#include <hiredis/async.h>
14 years ago
#include <sys/queue.h>
#include <event.h>
14 years ago
#include <evhttp.h>
struct evhttp_request;
struct http_client;
14 years ago
struct server;
struct cmd;
14 years ago
typedef void (*formatting_fun)(redisAsyncContext *, void *, void *);
struct cmd {
int count;
const char **argv;
size_t *argv_len;
/* HTTP data */
char *mime;
int mime_free;
};
struct subscription {
14 years ago
struct server *s;
struct cmd *cmd;
14 years ago
};
struct cmd *
cmd_new(int count);
void
cmd_free(struct cmd *c);
int
cmd_run(struct server *s, struct http_client *client,
const char *uri, size_t uri_len,
const char *body, size_t body_len);
int
cmd_select_format(struct http_client *client, struct cmd *cmd,
const char *uri, size_t uri_len, formatting_fun *f_format);
14 years ago
14 years ago
int
cmd_is_subscribe(struct cmd *cmd);
#endif