blob: ca5870022bbb31f11c39c652f3b83353b99cc0b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Shared library add-on to iptables to add NOTRACK target support. */
#include <xtables.h>
static struct xtables_target notrack_target = {
.family = NFPROTO_UNSPEC,
.name = "NOTRACK",
.version = XTABLES_VERSION,
.size = XT_ALIGN(0),
.userspacesize = XT_ALIGN(0),
};
void _init(void)
{
xtables_register_target(¬rack_target);
}
|