X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=extensions%2Flibipt_IPV4OPTSSTRIP.c;h=d0305e63687ef12101bbfaf85e0b6f659c4a79fb;hb=6afea0b41dfbc3824956d11d960ad80097218feb;hp=f1dcec06a70924b37e44f649426dba7833871823;hpb=f7b70cf9e00324b89b02de213bcd0dde7044d035;p=iptables.git diff --git a/extensions/libipt_IPV4OPTSSTRIP.c b/extensions/libipt_IPV4OPTSSTRIP.c index f1dcec0..d0305e6 100644 --- a/extensions/libipt_IPV4OPTSSTRIP.c +++ b/extensions/libipt_IPV4OPTSSTRIP.c @@ -13,11 +13,6 @@ #include #include -static void init(struct ipt_entry_target *t, unsigned int *nfcache) -{ - *nfcache |= NFC_UNKNOWN; -} - static void help(void) { printf("IPV4OPTSSTRIP v%s target takes no option !! Make sure you use it in the mangle table.\n", @@ -59,20 +54,18 @@ save(const struct ipt_ip *ip, const struct ipt_entry_target *target) /* nothing to print, we don't take option... */ } -static -struct iptables_target IPV4OPTSSTRIP -= { NULL, - "IPV4OPTSSTRIP", - IPTABLES_VERSION, - IPT_ALIGN(0), - IPT_ALIGN(0), - &help, - &init, - &parse, - &final_check, - &print, - &save, - opts +static struct iptables_target IPV4OPTSSTRIP = { + .next = NULL, + .name = "IPV4OPTSSTRIP", + .version = IPTABLES_VERSION, + .size = IPT_ALIGN(0), + .userspacesize = IPT_ALIGN(0), + .help = &help, + .parse = &parse, + .final_check = &final_check, + .print = &print, + .save = &save, + .extra_opts = opts }; void _init(void)