diff options
author | Mark Stapp <mjs@voltanet.io> | 2019-02-28 22:23:21 +0100 |
---|---|---|
committer | Mark Stapp <mjs@voltanet.io> | 2019-03-07 21:06:01 +0100 |
commit | 16d697870b6e6597cda52625d895d4c6233c91b0 (patch) | |
tree | 775208fe90bff69ac6f55a0409bbf2d03894cc37 /zebra/zebra_dplane.h | |
parent | Merge pull request #3919 from sworleys/Remove-SNL-Var (diff) | |
download | frr-16d697870b6e6597cda52625d895d4c6233c91b0.tar.xz frr-16d697870b6e6597cda52625d895d4c6233c91b0.zip |
zebra: rename pseudowire destination api
In prep for adding nexthop info for pws, rename the accessor
for the pw destination. Add a nexthop-group to the pw
data in the dataplane module.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'zebra/zebra_dplane.h')
-rw-r--r-- | zebra/zebra_dplane.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_dplane.h b/zebra/zebra_dplane.h index 81226961e..84da20f2a 100644 --- a/zebra/zebra_dplane.h +++ b/zebra/zebra_dplane.h @@ -215,7 +215,7 @@ int dplane_ctx_get_pw_type(const struct zebra_dplane_ctx *ctx); int dplane_ctx_get_pw_af(const struct zebra_dplane_ctx *ctx); uint32_t dplane_ctx_get_pw_flags(const struct zebra_dplane_ctx *ctx); int dplane_ctx_get_pw_status(const struct zebra_dplane_ctx *ctx); -const union g_addr *dplane_ctx_get_pw_nexthop( +const union g_addr *dplane_ctx_get_pw_dest( const struct zebra_dplane_ctx *ctx); const union pw_protocol_fields *dplane_ctx_get_pw_proto( const struct zebra_dplane_ctx *ctx); |