struct xtnu_match {
struct list_head list;
char name[XT_FUNCTION_MAXNAMELEN - 1 - sizeof(void *)];
+ uint8_t revision;
bool (*match)(const struct sk_buff *, const struct xt_match_param *);
int (*checkentry)(const struct xt_mtchk_param *);
void (*destroy)(const struct xt_mtdtor_param *);
const char *table;
unsigned int matchsize, hooks;
unsigned short proto, family;
- uint8_t revision;
void *__compat_match;
};
struct xtnu_target {
struct list_head list;
char name[XT_FUNCTION_MAXNAMELEN - 1 - sizeof(void *)];
+ uint8_t revision;
unsigned int (*target)(struct sk_buff **,
const struct xt_target_param *);
int (*checkentry)(const struct xt_tgchk_param *);
const char *table;
unsigned int targetsize, hooks;
unsigned short proto, family;
- uint8_t revision;
void *__compat_target;
};