You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
363 B
16 lines
363 B
4 months ago
|
/* Shared library add-on to ip6tables to add EUI64 address checking support. */
|
||
|
#include <xtables.h>
|
||
|
|
||
|
static struct xtables_match eui64_mt6_reg = {
|
||
|
.name = "eui64",
|
||
|
.version = XTABLES_VERSION,
|
||
|
.family = NFPROTO_IPV6,
|
||
|
.size = XT_ALIGN(sizeof(int)),
|
||
|
.userspacesize = XT_ALIGN(sizeof(int)),
|
||
|
};
|
||
|
|
||
|
void _init(void)
|
||
|
{
|
||
|
xtables_register_match(&eui64_mt6_reg);
|
||
|
}
|