diff options
author | Stephen Worley <sworley@cumulusnetworks.com> | 2019-06-24 20:04:13 +0200 |
---|---|---|
committer | Stephen Worley <sworley@cumulusnetworks.com> | 2019-06-26 04:58:48 +0200 |
commit | 50d8965075cf59744dde685ae01400d9b7ee08a2 (patch) | |
tree | 576f96ef1806522cfc2e8d7af5f2b61605daecc1 /pbrd/pbr_vty.c | |
parent | lib: Add a nexthop_dup() that allocates and copies (diff) | |
download | frr-50d8965075cf59744dde685ae01400d9b7ee08a2.tar.xz frr-50d8965075cf59744dde685ae01400d9b7ee08a2.zip |
lib: Private api for nexthop_group manipulation
Add a file that exposes functions which modify nexthop groups.
Nexthop groups are techincally immutable but there are a
few special cases where we need direct access to add/remove
nexthops after the group has been made. This file provides a
way to expose those functions in a way that makes it clear
this is a private/hidden api.
Signed-off-by: Stephen Worley <sworley@cumulusnetworks.com>
Diffstat (limited to 'pbrd/pbr_vty.c')
-rw-r--r-- | pbrd/pbr_vty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pbrd/pbr_vty.c b/pbrd/pbr_vty.c index a71c712ea..95f38563b 100644 --- a/pbrd/pbr_vty.c +++ b/pbrd/pbr_vty.c @@ -25,6 +25,7 @@ #include "vrf.h" #include "nexthop.h" #include "nexthop_group.h" +#include "nexthop_group_private.h" #include "log.h" #include "debug.h" #include "pbr.h" @@ -329,7 +330,7 @@ DEFPY(pbr_map_nexthop, pbr_map_nexthop_cmd, nh = nexthop_new(); memcpy(nh, &nhop, sizeof(nhop)); - nexthop_add(&pbrms->nhg->nexthop, nh); + _nexthop_add(&pbrms->nhg->nexthop, nh); pbr_nht_add_individual_nexthop(pbrms); pbr_map_check(pbrms); |