1 /* Shared library add-on to iptables for unclean. */
7 static void unclean_help(void)
9 printf("unclean match takes no options\n");
12 static int unclean_parse(int c
, char **argv
, int invert
, unsigned int *flags
,
13 const void *entry
, struct xt_entry_match
**match
)
18 static struct xtables_match unclean_mt_reg
= {
20 .version
= XTABLES_VERSION
,
21 .family
= NFPROTO_IPV4
,
23 .userspacesize
= XT_ALIGN(0),
25 .parse
= unclean_parse
,
30 xtables_register_match(&unclean_mt_reg
);