aboutsummaryrefslogtreecommitdiffstats
path: root/radix-trie.h
diff options
context:
space:
mode:
authorThomas Gschwantner <tharre3@gmail.com>2019-12-03 01:50:04 +0100
committerThomas Gschwantner <tharre3@gmail.com>2019-12-11 06:22:17 +0100
commit271af935459c446e4b6f4e3549de5b5a31e454fb (patch)
treee82dac1d81e78781b0462397765d6b3af1105089 /radix-trie.h
parentradix-trie: fix issues related to shadow-/counting (diff)
downloadwg-dynamic-271af935459c446e4b6f4e3549de5b5a31e454fb.tar.xz
wg-dynamic-271af935459c446e4b6f4e3549de5b5a31e454fb.zip
radix-trie: implement ipp_removepool_v{4,6}
Diffstat (limited to 'radix-trie.h')
-rw-r--r--radix-trie.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/radix-trie.h b/radix-trie.h
index d3599dc..ffaf7ad 100644
--- a/radix-trie.h
+++ b/radix-trie.h
@@ -35,8 +35,8 @@ void ipp_addnth_v6(struct ipns *ns, struct in6_addr *dest, uint32_t index_low,
int ipp_addpool_v4(struct ipns *ns, const struct in_addr *ip, uint8_t cidr);
int ipp_addpool_v6(struct ipns *ns, const struct in6_addr *ip, uint8_t cidr);
-int ipp_removepool_v4(struct ipns *ns, const struct in_addr *ip);
-int ipp_removepool_v6(struct ipns *ns, const struct in6_addr *ip);
+int ipp_removepool_v4(struct ipns *ns, const struct in_addr *ip, uint8_t cidr);
+int ipp_removepool_v6(struct ipns *ns, const struct in6_addr *ip, uint8_t cidr);
#ifdef DEBUG
void node_to_str(struct radix_node *node, char *buf, uint8_t bits);