From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id E22EC5F3B for ; Tue, 11 Dec 2018 18:25:26 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Dec 2018 09:25:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,343,1539673200"; d="scan'208";a="97926069" Received: from dwdohert-mobl.ger.corp.intel.com (HELO [163.33.176.66]) ([163.33.176.66]) by orsmga007.jf.intel.com with ESMTP; 11 Dec 2018 09:25:24 -0800 To: Konstantin Ananyev , dev@dpdk.org References: <1543596366-22617-2-git-send-email-konstantin.ananyev@intel.com> <1544110714-4514-4-git-send-email-konstantin.ananyev@intel.com> From: "Doherty, Declan" Message-ID: <333c18ba-255a-3bed-ece1-f09f10eb43d7@intel.com> Date: Tue, 11 Dec 2018 17:25:24 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.3.3 MIME-Version: 1.0 In-Reply-To: <1544110714-4514-4-git-send-email-konstantin.ananyev@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v3 3/9] net: add ESP trailer structure definition X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Dec 2018 17:25:27 -0000 On 06/12/2018 3:38 PM, Konstantin Ananyev wrote: > Signed-off-by: Konstantin Ananyev > Acked-by: Mohammad Abdul Awal > --- > lib/librte_net/rte_esp.h | 10 +++++++++- > 1 file changed, 9 insertions(+), 1 deletion(-) > > diff --git a/lib/librte_net/rte_esp.h b/lib/librte_net/rte_esp.h > index f77ec2eb2..8e1b3d2dd 100644 > --- a/lib/librte_net/rte_esp.h > +++ b/lib/librte_net/rte_esp.h > @@ -11,7 +11,7 @@ > * ESP-related defines > */ > > -#include > +#include > > #ifdef __cplusplus > extern "C" { > @@ -25,6 +25,14 @@ struct esp_hdr { > rte_be32_t seq; /**< packet sequence number */ > } __attribute__((__packed__)); > > +/** > + * ESP Trailer > + */ > +struct esp_tail { > + uint8_t pad_len; /**< number of pad bytes (0-255) */ > + uint8_t next_proto; /**< IPv4 or IPv6 or next layer header */ > +} __attribute__((__packed__)); > + > #ifdef __cplusplus > } > #endif > Acked-by: Declan Doherty