• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Shared library add-on to iptables to add NOTRACK target support. */
2 #include <xtables.h>
3 
4 static struct xtables_target notrack_target = {
5 	.family		= NFPROTO_UNSPEC,
6 	.name		= "NOTRACK",
7 	.version	= XTABLES_VERSION,
8 	.size		= XT_ALIGN(0),
9 	.userspacesize	= XT_ALIGN(0),
10 };
11 
_init(void)12 void _init(void)
13 {
14 	xtables_register_target(&notrack_target);
15 }
16