From 64d222e2c3d628c76817d402c85e84dfa528f13f Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 10 Mar 2017 08:04:39 -0500 Subject: [PATCH] bgpd: Use appropriate Attribute number for labels The draft-ietf-idr-bgp-prefix-sid-04 specifies the label attribute should be 40 not 30. Signed-off-by: Donald Sharp --- bgpd/bgpd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h index 83c5d90ddf..1b97a25039 100644 --- a/bgpd/bgpd.h +++ b/bgpd/bgpd.h @@ -972,8 +972,8 @@ struct bgp_nlri #define BGP_ATTR_AS4_AGGREGATOR 18 #define BGP_ATTR_AS_PATHLIMIT 21 #define BGP_ATTR_ENCAP 23 -#define BGP_ATTR_LABEL_INDEX 30 #define BGP_ATTR_LARGE_COMMUNITIES 32 +#define BGP_ATTR_LABEL_INDEX 40 #if ENABLE_BGP_VNC #define BGP_ATTR_VNC 255 #endif -- 2.39.5