diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-12-20 02:37:26 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-12-20 02:37:26 +0000 |
commit | 19980872755027ab9fe3ca514d2053ab7b2a4c70 (patch) | |
tree | 5f8fa04af58fcb68da20d651ecf42c726bda5ed2 /contrib/fwd/src/fwd_xtables.h | |
parent | ce40fff288e28c5d758789d25cb76f1f617e105b (diff) |
contrib/fwd: renamed struct fwd_{addr,network}_list to struct fwd_{network,addr}
Diffstat (limited to 'contrib/fwd/src/fwd_xtables.h')
-rw-r--r-- | contrib/fwd/src/fwd_xtables.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/fwd/src/fwd_xtables.h b/contrib/fwd/src/fwd_xtables.h index 45b638a058..1ac57bb0e9 100644 --- a/contrib/fwd/src/fwd_xtables.h +++ b/contrib/fwd/src/fwd_xtables.h @@ -50,8 +50,8 @@ void fwd_xt_init(void); struct fwd_xt_rule * fwd_xt_init_rule(struct iptc_handle *h); void fwd_xt_parse_proto(struct fwd_xt_rule *r, struct fwd_proto *p, int inv); -void fwd_xt_parse_in(struct fwd_xt_rule *r, struct fwd_network_list *n, int inv); -void fwd_xt_parse_out(struct fwd_xt_rule *r, struct fwd_network_list *n, int inv); +void fwd_xt_parse_in(struct fwd_xt_rule *r, struct fwd_network *n, int inv); +void fwd_xt_parse_out(struct fwd_xt_rule *r, struct fwd_network *n, int inv); void fwd_xt_parse_src(struct fwd_xt_rule *r, struct fwd_cidr *c, int inv); void fwd_xt_parse_dest(struct fwd_xt_rule *r, struct fwd_cidr *c, int inv); void fwd_xt_parse_frag(struct fwd_xt_rule *r, int frag, int inv); |