diff options
| author | Mark Stapp <mjs.ietf@gmail.com> | 2023-08-18 11:56:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-18 11:56:20 -0400 |
| commit | 852e24d7a4c2045ad5400a4b82bbceae6d6ced1c (patch) | |
| tree | 697bcf1a31132ce1aecdd9f2c1ba803331163796 /zebra/zebra_dplane.h | |
| parent | 1b52af80fd00e8abe3aa11fa6ccbca4f4a359353 (diff) | |
| parent | 6349e49645c2845beddc3a9a7a56b6123bfa2c89 (diff) | |
Merge pull request #14223 from donaldsharp/interface_fies
zebra: Fix crashes in interface change
Diffstat (limited to 'zebra/zebra_dplane.h')
| -rw-r--r-- | zebra/zebra_dplane.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/zebra_dplane.h b/zebra/zebra_dplane.h index 79248a4ae4..c006522e01 100644 --- a/zebra/zebra_dplane.h +++ b/zebra/zebra_dplane.h @@ -429,6 +429,10 @@ struct zebra_dplane_bridge_vlan_info { uint16_t flags; uint16_t vid; }; +void dplane_ctx_set_ifp_no_afspec(struct zebra_dplane_ctx *ctx); +bool dplane_ctx_get_ifp_no_afspec(const struct zebra_dplane_ctx *ctx); +void dplane_ctx_set_ifp_no_bridge_vlan_info(struct zebra_dplane_ctx *ctx); +bool dplane_ctx_get_ifp_no_bridge_vlan_info(struct zebra_dplane_ctx *ctx); void dplane_ctx_set_ifp_bridge_vlan_info( struct zebra_dplane_ctx *ctx, struct zebra_dplane_bridge_vlan_info *bvinfo); |
