summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2018-03-10 15:16:09 -0500
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-03-14 08:32:39 -0400
commitd604266ced3bebd0907c76908e70e70884a353cc (patch)
tree52b18429ff935524f089e25e66370a1d1391a877
parent31919191561fa9b978f8c3cf713e30ed6fb20889 (diff)
lib: Expose nhgc_find command
Expose to the world the nhgc_find command so that interested parties can find a stored nexthop group. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
-rw-r--r--lib/nexthop_group.c2
-rw-r--r--lib/nexthop_group.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/lib/nexthop_group.c b/lib/nexthop_group.c
index 2012fbdbed..0cfbeb8f40 100644
--- a/lib/nexthop_group.c
+++ b/lib/nexthop_group.c
@@ -160,7 +160,7 @@ static void nhgc_delete_nexthops(struct nexthop_group_cmd *nhgc)
}
}
-static struct nexthop_group_cmd *nhgc_find(const char *name)
+struct nexthop_group_cmd *nhgc_find(const char *name)
{
struct nexthop_group_cmd find;
diff --git a/lib/nexthop_group.h b/lib/nexthop_group.h
index 563799dc8f..b22e083e6b 100644
--- a/lib/nexthop_group.h
+++ b/lib/nexthop_group.h
@@ -85,4 +85,7 @@ void nexthop_group_init(
extern struct nexthop *nexthop_exists(struct nexthop_group *nhg,
struct nexthop *nh);
+
+extern struct nexthop_group_cmd *nhgc_find(const char *name);
+
#endif