aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2019-05-02 12:08:34 +0200
committerJaap Keuter <jaap.keuter@xs4all.nl>2019-05-05 18:56:49 +0000
commitd6ab4f792b93c50a1204cc1b4a9fb1a00d34c48c (patch)
tree03d5c4296041c27b493bd579e5d3c7e342414416
parent53e043a42f935b686c04eadfc3680684317a9870 (diff)
BGP: Add missing SAFI Segment Routing Policy (73)
Change-Id: I63cb9c6420cf1db503fc826a8e43b33518000758 Ping-Bug: 15746 Reviewed-on: https://code.wireshark.org/review/33051 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Uli Heilmeier <openid@heilmeier.eu> Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
-rw-r--r--epan/dissectors/packet-bgp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-bgp.c b/epan/dissectors/packet-bgp.c
index aebab7aeef..4bd8145f86 100644
--- a/epan/dissectors/packet-bgp.c
+++ b/epan/dissectors/packet-bgp.c
@@ -523,6 +523,7 @@ static dissector_handle_t bgp_handle;
#define SAFNUM_EVPN 70 /* EVPN RFC */
#define SAFNUM_BGP_LS 71 /* RFC7752 */
#define SAFNUM_BGP_LS_VPN 72 /* RFC7752 */
+#define SAFNUM_SR_POLICY 73 /* draft-ietf-idr-segment-routing-te-policy-05 */
#define SAFNUM_LAB_VPNUNICAST 128 /* Draft-rosen-rfc2547bis-03 */
#define SAFNUM_LAB_VPNMULCAST 129
#define SAFNUM_LAB_VPNUNIMULC 130
@@ -1241,6 +1242,7 @@ static const value_string bgpattr_nlri_safi[] = {
{ SAFNUM_VPLS, "VPLS"},
{ SAFNUM_BGP_LS, "BGP-LS"},
{ SAFNUM_BGP_LS_VPN, "BGP-LS-VPN"},
+ { SAFNUM_SR_POLICY, "SR Policy"},
{ SAFNUM_LAB_VPNUNICAST, "Labeled VPN Unicast" }, /* draft-rosen-rfc2547bis-03 */
{ SAFNUM_LAB_VPNMULCAST, "Labeled VPN Multicast" },
{ SAFNUM_LAB_VPNUNIMULC, "Labeled VPN Unicast+Multicast" },