blob: ca5870022bbb31f11c39c652f3b83353b99cc0b5 [file] [log] [blame]
/* 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(&notrack_target);
}