X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=iptables.h;h=c8d1add9ce452920044b8e395c6d30bdc9ea0bfc;hp=05a1c7288be9eac3a66e35858d8786fe2c660f69;hb=3a3d85b3c787271e4860ca590d716cf557c1fb7e;hpb=9a41dccb8e83bf7a7b3c12e6caf371010cf748cb diff --git a/iptables.h b/iptables.h index 05a1c72..c8d1add 100644 --- a/iptables.h +++ b/iptables.h @@ -23,13 +23,14 @@ #include #include +#include #include #include #include #include "options.h" - +/* xtables interface */ #if (XTABLES_VERSION_CODE == 10) # include "xtables-10.h" #elif (XTABLES_VERSION_CODE == 5) @@ -38,9 +39,6 @@ # error "Unsupported xtables version" #endif -extern struct xtables_match *xtables_pending_matches; -extern struct xtables_target *xtables_pending_targets; - /* libext.a interface */ #define FW3_IPT_MODULES \ __ipt_module(comment) \ @@ -66,11 +64,18 @@ extern struct xtables_target *xtables_pending_targets; __ipt_module(SNAT) \ __ipt_module(TCPMSS) +#ifdef DISABLE_IPV6 +#undef __ipt_module +#define __ipt_module(x) \ + extern void libxt_##x##_init(void) __attribute__((weak)); \ + extern void libipt_##x##_init(void) __attribute__((weak)); +#else #undef __ipt_module #define __ipt_module(x) \ extern void libxt_##x##_init(void) __attribute__((weak)); \ extern void libipt_##x##_init(void) __attribute__((weak)); \ extern void libip6t_##x##_init(void) __attribute__((weak)); +#endif FW3_IPT_MODULES @@ -83,6 +88,9 @@ struct fw3_ipt_handle { enum fw3_family family; enum fw3_table table; void *handle; + + int libc; + void **libv; }; struct fw3_ipt_rule { @@ -118,6 +126,8 @@ void fw3_ipt_flush(struct fw3_ipt_handle *h); void fw3_ipt_commit(struct fw3_ipt_handle *h); +void fw3_ipt_close(struct fw3_ipt_handle *h); + struct fw3_ipt_rule *fw3_ipt_rule_new(struct fw3_ipt_handle *h); void fw3_ipt_rule_proto(struct fw3_ipt_rule *r, struct fw3_protocol *proto); @@ -137,8 +147,7 @@ void fw3_ipt_rule_icmptype(struct fw3_ipt_rule *r, struct fw3_icmptype *icmp); void fw3_ipt_rule_limit(struct fw3_ipt_rule *r, struct fw3_limit *limit); -void fw3_ipt_rule_ipset(struct fw3_ipt_rule *r, struct fw3_ipset *ipset, - bool invert); +void fw3_ipt_rule_ipset(struct fw3_ipt_rule *r, struct fw3_setmatch *match); void fw3_ipt_rule_time(struct fw3_ipt_rule *r, struct fw3_time *time);