X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fsubnet.h;h=48eec520f53a85213905aba8479c63c158143989;hb=6eaefb4dbce240334e35f67d9f3db5d4f44e49c9;hp=c50ac6c8577c4cb0f5a0bbe8417b13dfde6d214d;hpb=de78d79db84c486afcc353884ec1770866beb653;p=meshlink diff --git a/src/subnet.h b/src/subnet.h index c50ac6c8..48eec520 100644 --- a/src/subnet.h +++ b/src/subnet.h @@ -70,8 +70,8 @@ extern subnet_t *new_subnet(void) __attribute__ ((__malloc__)); extern void free_subnet(subnet_t *); extern void init_subnets(void); extern void exit_subnets(void); -extern avl_tree_t *new_subnet_tree(void) __attribute__ ((__malloc__)); -extern void free_subnet_tree(avl_tree_t *); +extern splay_tree_t *new_subnet_tree(void) __attribute__ ((__malloc__)); +extern void free_subnet_tree(splay_tree_t *); extern void subnet_add(struct node_t *, subnet_t *); extern void subnet_del(struct node_t *, subnet_t *); extern void subnet_update(struct node_t *, subnet_t *, bool); @@ -81,6 +81,6 @@ extern subnet_t *lookup_subnet(const struct node_t *, const subnet_t *); extern subnet_t *lookup_subnet_mac(const mac_t *); extern subnet_t *lookup_subnet_ipv4(const ipv4_t *); extern subnet_t *lookup_subnet_ipv6(const ipv6_t *); -extern void dump_subnets(void); +extern int dump_subnets(struct evbuffer *); #endif /* __TINC_SUBNET_H__ */