blob: bc4a4a085fba2a921faeae5e9c4b0a5e147612b0 [file] [log] [blame]
/* Shared library add-on to iptables for unclean. */
#include <xtables.h>
static struct xtables_match unclean_mt_reg = {
.name = "unclean",
.version = XTABLES_VERSION,
.family = NFPROTO_IPV4,
.size = XT_ALIGN(0),
.userspacesize = XT_ALIGN(0),
};
void _init(void)
{
xtables_register_match(&unclean_mt_reg);
}