diff options
author | Mark Stapp <mjs@voltanet.io> | 2018-08-17 21:25:24 +0200 |
---|---|---|
committer | Mark Stapp <mjs@voltanet.io> | 2018-10-25 14:56:52 +0200 |
commit | 01ce7cbac1895e8308e6c213336a28b4176ef354 (patch) | |
tree | ba34e681d87747b7b6a3b106729174db5e17b8bf /zebra/zebra_dplane.h | |
parent | zebra: add shutdown callback for dplane providers (diff) | |
download | frr-01ce7cbac1895e8308e6c213336a28b4176ef354.tar.xz frr-01ce7cbac1895e8308e6c213336a28b4176ef354.zip |
zebra: update routing socket path
Update route-socket path for route updates using the async
dplane 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, 2 insertions, 0 deletions
diff --git a/zebra/zebra_dplane.h b/zebra/zebra_dplane.h index 49c98879f..88e671e61 100644 --- a/zebra/zebra_dplane.h +++ b/zebra/zebra_dplane.h @@ -159,6 +159,7 @@ route_tag_t dplane_ctx_get_old_tag(const dplane_ctx_h ctx); uint16_t dplane_ctx_get_instance(const dplane_ctx_h ctx); uint16_t dplane_ctx_get_old_instance(const dplane_ctx_h ctx); uint32_t dplane_ctx_get_metric(const dplane_ctx_h ctx); +uint32_t dplane_ctx_get_old_metric(const dplane_ctx_h ctx); uint32_t dplane_ctx_get_mtu(const dplane_ctx_h ctx); uint32_t dplane_ctx_get_nh_mtu(const dplane_ctx_h ctx); uint8_t dplane_ctx_get_distance(const dplane_ctx_h ctx); @@ -166,6 +167,7 @@ uint8_t dplane_ctx_get_old_distance(const dplane_ctx_h ctx); const struct nexthop_group *dplane_ctx_get_ng(const dplane_ctx_h ctx); const struct zebra_dplane_info *dplane_ctx_get_ns(const dplane_ctx_h ctx); +const struct nexthop_group *dplane_ctx_get_old_ng(const dplane_ctx_h ctx); /* * Enqueue route change operations for the dataplane. |