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.
 
 

15 lines
235 B

#ifndef F2B_JAIL_H_
#define F2B_JAIL_H_
#include "logfile.h"
#include "match.h"
#define LOGLINE_MAX 2048
typedef struct f2b_jail_t {
char name[32];
f2b_match_t *matches;
f2b_logfile_t *logfiles;
};
#endif /* F2B_JAIL_H_ */