mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-06 04:35:12 +02:00

These files should be a very quick reference to the Xtables APIs of previous Linux kernel versions and Xtables-addons. Their contents have been reformatted so as to be usable with diff -u.
40 lines
486 B
C
40 lines
486 B
C
match:
|
|
|
|
/* true/false */
|
|
bool
|
|
(*match)(
|
|
const struct sk_buff *skb,
|
|
struct xt_action_param *,
|
|
);
|
|
|
|
/* error code */
|
|
int
|
|
(*checkentry)(
|
|
const struct xt_mtchk_param *,
|
|
);
|
|
|
|
void
|
|
(*destroy)(
|
|
const struct xt_mtdtor_param *,
|
|
);
|
|
|
|
target:
|
|
|
|
/* verdict */
|
|
unsigned int
|
|
(*target)(
|
|
struct sk_buff *skb,
|
|
const struct xt_action_param *,
|
|
);
|
|
|
|
/* error code */
|
|
int
|
|
(*checkentry)(
|
|
const struct xt_tgchk_param *,
|
|
);
|
|
|
|
void
|
|
(*destroy)(
|
|
const struct xt_tgdtor_param *,
|
|
);
|