summaryrefslogtreecommitdiff
path: root/lib/table.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2024-09-25 08:02:42 -0400
committerDonald Sharp <sharpd@nvidia.com>2024-11-25 13:12:10 -0500
commit67526c4b8c6a4f4757d617ea9fd54d7f95a540d0 (patch)
tree1a4a0c28402a42ed9fe86fcbaece791d3546d2fc /lib/table.c
parent735809756f8389b54098f4abcb42c233bb1f1dcd (diff)
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 'lib/table.c')
-rw-r--r--lib/table.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/table.c b/lib/table.c
index 3bf93894ec..cf185de226 100644
--- a/lib/table.c
+++ b/lib/table.c
@@ -208,32 +208,6 @@ struct route_node *route_node_match(struct route_table *table,
return NULL;
}
-struct route_node *route_node_match_ipv4(struct route_table *table,
- const struct in_addr *addr)
-{
- struct prefix_ipv4 p;
-
- memset(&p, 0, sizeof(p));
- p.family = AF_INET;
- p.prefixlen = IPV4_MAX_BITLEN;
- p.prefix = *addr;
-
- return route_node_match(table, (struct prefix *)&p);
-}
-
-struct route_node *route_node_match_ipv6(struct route_table *table,
- const struct in6_addr *addr)
-{
- struct prefix_ipv6 p;
-
- memset(&p, 0, sizeof(p));
- p.family = AF_INET6;
- p.prefixlen = IPV6_MAX_BITLEN;
- p.prefix = *addr;
-
- return route_node_match(table, &p);
-}
-
/* Lookup same prefix node. Return NULL when we can't find route. */
struct route_node *route_node_lookup(struct route_table *table,
union prefixconstptr pu)