diff options
| author | Russ White <russ@riw.us> | 2024-09-10 10:04:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-10 10:04:08 -0400 |
| commit | add56c61dd510aec79aa62838b090bb43a54c8a9 (patch) | |
| tree | d1a07e5695c0b2ea8d5442f5b586d51d041ac892 /zebra/zebra_mpls.h | |
| parent | b774fc683a636e844f7e6456ba3651c3d6173410 (diff) | |
| parent | b2c2113f29ddc20affdf349300a5a54e24568634 (diff) | |
Merge pull request #15259 from dmytroshytyi-6WIND/nexthop_resolution
zebra: add LSP entry to nexthop via recursive (part 2)
Diffstat (limited to 'zebra/zebra_mpls.h')
| -rw-r--r-- | zebra/zebra_mpls.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/zebra/zebra_mpls.h b/zebra/zebra_mpls.h index dd6f960146..27f5bdbc46 100644 --- a/zebra/zebra_mpls.h +++ b/zebra/zebra_mpls.h @@ -146,7 +146,7 @@ int zebra_mpls_write_label_block_config(struct vty *vty, struct zebra_vrf *vrf); /* * Install dynamic LSP entry. */ -int zebra_mpls_lsp_install(struct zebra_vrf *zvrf, struct route_node *rn, +void zebra_mpls_lsp_install(struct zebra_vrf *zvrf, struct route_node *rn, struct route_entry *re); /* @@ -257,6 +257,12 @@ void zebra_mpls_zapi_labels_process(bool add_p, struct zebra_vrf *zvrf, const struct zapi_labels *zl); /* + * Upon reconfiguring nexthop-resolution updates, update the + * lsp entries accordingly. + */ +void zebra_mpls_fec_nexthop_resolution_update(struct zebra_vrf *zvrf); + +/* * Uninstall all NHLFEs bound to a single FEC. * * mpls_ftn_uninstall -> Called to enqueue into early label processing |
