mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 23:29:36 +00:00
zebra: Remove typedef of mpls_srgb_t
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
57dd86429f
commit
c4528712b0
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user