Home | History | Annotate | Download | only in extensions
      1 /* Shared library add-on to iptables for unclean. */
      2 #include <xtables.h>
      3 
      4 static struct xtables_match unclean_mt_reg = {
      5 	.name		= "unclean",
      6 	.version	= XTABLES_VERSION,
      7 	.family		= NFPROTO_IPV4,
      8 	.size		= XT_ALIGN(0),
      9 	.userspacesize	= XT_ALIGN(0),
     10 };
     11 
     12 void _init(void)
     13 {
     14 	xtables_register_match(&unclean_mt_reg);
     15 }
     16