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

29 lines
841 B

#ifndef BACKEND_H_
#define BACKEND_H_
#include "config.h"
#include "log.h"
typedef struct f2b_backend_t {
void *h;
void *cfg;
void *(*create) (const char *id);
bool (*config) (void *cfg, const char *key, const char *value);
bool (*ready) (void *cfg);
bool (*start) (void *cfg);
bool (*stop) (void *cfg);
bool (*ping) (void *cfg);
bool (*ban) (void *cfg, const char *ip);
bool (*check) (void *cfg, const char *ip);
bool (*unban) (void *cfg, const char *ip);
void (*destroy) (void *cfg);
} f2b_backend_t;
f2b_backend_t * f2b_backend_create (f2b_config_section_t *config, const char *id);
void f2b_backend_destroy(f2b_backend_t *b);
bool f2b_backend_ban (f2b_backend_t *b, const char *ip);
bool f2b_backend_unban (f2b_backend_t *b, const char *ip);
#endif /* BACKEND_H_ */