X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=iptables.h;h=96d71bf850f3c485fd80576fa208c4f1e68b05a7;hp=b97e5c58908d36b03a37ba29f2e10c777e0d96f7;hb=d1a450f7f29b68c314b92cde4f8cd34d4766302b;hpb=cecf523b7bc055cb38ac66844f6ec039d88023ca diff --git a/iptables.h b/iptables.h index b97e5c5..96d71bf 100644 --- a/iptables.h +++ b/iptables.h @@ -117,8 +117,9 @@ struct fw3_ipt_handle *fw3_ipt_open(enum fw3_family family, void fw3_ipt_set_policy(struct fw3_ipt_handle *h, const char *chain, enum fw3_flag policy); + +void fw3_ipt_flush_chain(struct fw3_ipt_handle *h, const char *chain); void fw3_ipt_delete_chain(struct fw3_ipt_handle *h, const char *chain); -void fw3_ipt_delete_rules(struct fw3_ipt_handle *h, const char *target); void fw3_ipt_create_chain(struct fw3_ipt_handle *h, const char *fmt, ...); @@ -147,8 +148,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); @@ -168,7 +168,14 @@ struct fw3_ipt_rule * fw3_ipt_rule_create(struct fw3_ipt_handle *handle, struct fw3_address *src, struct fw3_address *dest); -void fw3_ipt_rule_append(struct fw3_ipt_rule *r, const char *fmt, ...); +void __fw3_ipt_rule_append(struct fw3_ipt_rule *r, bool repl, + const char *fmt, ...); + +#define fw3_ipt_rule_append(rule, ...) \ + __fw3_ipt_rule_append(rule, false, __VA_ARGS__) + +#define fw3_ipt_rule_replace(rule, ...) \ + __fw3_ipt_rule_append(rule, true, __VA_ARGS__) static inline void fw3_ipt_rule_target(struct fw3_ipt_rule *r, const char *fmt, ...)