diff options
author | Donald Sharp <sharpd@nvidia.com> | 2024-09-25 14:02:42 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2024-11-25 19:12:10 +0100 |
commit | 67526c4b8c6a4f4757d617ea9fd54d7f95a540d0 (patch) | |
tree | 1a4a0c28402a42ed9fe86fcbaece791d3546d2fc /lib/table.h | |
parent | ripd: Use route_node_match instead of route_node_match_ipv4 (diff) | |
download | frr-67526c4b8c6a4f4757d617ea9fd54d7f95a540d0.tar.xz frr-67526c4b8c6a4f4757d617ea9fd54d7f95a540d0.zip |
lib: Remove route_node_match_ipv[4|6] not being used
These functions are not being used. Let's just remove
them from our code base.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to '')
-rw-r--r-- | lib/table.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/table.h b/lib/table.h index acfc87615..c31be2b68 100644 --- a/lib/table.h +++ b/lib/table.h @@ -195,10 +195,6 @@ extern struct route_node *route_node_lookup_maynull(struct route_table *table, union prefixconstptr pu); extern struct route_node *route_node_match(struct route_table *table, union prefixconstptr pu); -extern struct route_node *route_node_match_ipv4(struct route_table *table, - const struct in_addr *addr); -extern struct route_node *route_node_match_ipv6(struct route_table *table, - const struct in6_addr *addr); extern unsigned long route_table_count(struct route_table *table); |