zebra: Remove typedef of mpls_srgb_t

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2020-05-07 08:48:42 -04:00
parent 57dd86429f
commit c4528712b0

View File

@ -33,10 +33,10 @@ extern "C" {
#endif #endif
/* MPLS (Segment Routing) global block */ /* MPLS (Segment Routing) global block */
typedef struct mpls_srgb_t_ { struct mpls_srgb {
uint32_t start_label; uint32_t start_label;
uint32_t end_label; uint32_t end_label;
} mpls_srgb_t; };
struct zebra_rmap { struct zebra_rmap {
char *name; char *name;
@ -111,7 +111,7 @@ struct zebra_vrf {
struct route_table *fec_table[AFI_MAX]; struct route_table *fec_table[AFI_MAX];
/* MPLS Segment Routing Global block */ /* MPLS Segment Routing Global block */
mpls_srgb_t mpls_srgb; struct mpls_srgb mpls_srgb;
/* Pseudowires. */ /* Pseudowires. */
struct zebra_pw_head pseudowires; struct zebra_pw_head pseudowires;