Home | History | Annotate | Download | only in extensions
      1 /* Shared library add-on to ip6tables to add EUI64 address checking support. */
      2 #include <xtables.h>
      3 
      4 static struct xtables_match eui64_mt6_reg = {
      5 	.name 		= "eui64",
      6 	.version	= XTABLES_VERSION,
      7 	.family		= NFPROTO_IPV6,
      8 	.size		= XT_ALIGN(sizeof(int)),
      9 	.userspacesize	= XT_ALIGN(sizeof(int)),
     10 };
     11 
     12 void _init(void)
     13 {
     14 	xtables_register_match(&eui64_mt6_reg);
     15 }
     16