From: Neale Ranns Date: Tue, 31 Mar 2020 08:25:07 +0000 (+0000) Subject: ip: Fix the AH/ESP protocol numbers on the API X-Git-Tag: v20.09-rc0~305 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=164c44f0b85fb635adcced8503f32ba9e2453fae ip: Fix the AH/ESP protocol numbers on the API Type: fix this is mainly cosmetic, assuming users use the symbolic names, since VPP's API types encode/decode functions corrected the values Signed-off-by: Neale Ranns Change-Id: Iecbb8102aee64b2565a3fc89a30cad73a935269d --- diff --git a/src/vnet/ip/ip_types.api b/src/vnet/ip/ip_types.api index d150050f6e2..72bd39e254c 100644 --- a/src/vnet/ip/ip_types.api +++ b/src/vnet/ip/ip_types.api @@ -68,8 +68,8 @@ enum ip_proto : u8 { IP_API_PROTO_TCP = 6, IP_API_PROTO_UDP = 17, IP_API_PROTO_GRE = 47, - IP_API_PROTO_AH = 50, - IP_API_PROTO_ESP = 51, + IP_API_PROTO_ESP = 50, + IP_API_PROTO_AH = 51, IP_API_PROTO_ICMP6 = 58, IP_API_PROTO_EIGRP = 88, IP_API_PROTO_OSPF = 89,