X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=rules.h;h=6d332fc61e5ca3002a49a70bc79a9f0335936994;hp=db9322031189bae70c3858358031b65eadc5bc62;hb=3a3d85b3c787271e4860ca590d716cf557c1fb7e;hpb=8fee8f9c520c58d07772cc6bd8f65d9eb1776a56 diff --git a/rules.h b/rules.h index db93220..6d332fc 100644 --- a/rules.h +++ b/rules.h @@ -23,11 +23,14 @@ #include "zones.h" #include "ipsets.h" #include "utils.h" +#include "iptables.h" + +extern const struct fw3_option fw3_rule_opts[]; void fw3_load_rules(struct fw3_state *state, struct uci_package *p); -void fw3_print_rules(enum fw3_table table, enum fw3_family family, - struct fw3_state *state); +void fw3_print_rules(struct fw3_ipt_handle *handle, struct fw3_state *state); -void fw3_free_rule(struct fw3_rule *rule); +#define fw3_free_rule(rule) \ + fw3_free_object(rule, fw3_rule_opts) #endif