blob: bc4a4a085fba2a921faeae5e9c4b0a5e147612b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* 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);
}
|