From 8c700900e2a0cf87d7917cb62578583a60ad1210 Mon Sep 17 00:00:00 2001 From: Philip Blundell Date: Mon, 15 May 2000 02:17:52 +0000 Subject: Philip Blundell's IPv6 fixes. --- include/libiptc/libip6tc.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/libiptc/libip6tc.h') diff --git a/include/libiptc/libip6tc.h b/include/libiptc/libip6tc.h index ad507c8d..599e0db6 100644 --- a/include/libiptc/libip6tc.h +++ b/include/libiptc/libip6tc.h @@ -27,16 +27,16 @@ int ip6tc_is_chain(const char *chain, const ip6tc_handle_t handle); ip6tc_handle_t ip6tc_init(const char *tablename); /* Iterator functions to run through the chains. Returns NULL at end. */ -const char *iptc_first_chain(ip6tc_handle_t *handle); +const char *ip6tc_first_chain(ip6tc_handle_t *handle); const char *ip6tc_next_chain(ip6tc_handle_t *handle); -/* How many rules in this chain? */ -unsigned int ip6tc_num_rules(const char *chain, ip6tc_handle_t *handle); +/* Get first rule in the given chain: NULL for empty chain. */ +const struct ip6t_entry *ip6tc_first_rule(const char *chain, + ip6tc_handle_t *handle); -/* Get n'th rule in this chain. */ -const struct ip6t_entry *ip6tc_get_rule(const char *chain, - unsigned int n, - ip6tc_handle_t *handle); +/* Returns NULL when rules run out. */ +const struct ip6t_entry *ip6tc_next_rule(const struct ip6t_entry *prev, + ip6tc_handle_t *handle); /* Returns a pointer to the target name of this position. */ const char *ip6tc_get_target(const struct ip6t_entry *e, -- cgit v1.2.3