From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 3FC542617 for ; Thu, 9 Jun 2016 13:58:33 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 09 Jun 2016 04:58:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,444,1459839600"; d="scan'208";a="994243443" Received: from irsmsx102.ger.corp.intel.com ([163.33.3.155]) by orsmga002.jf.intel.com with ESMTP; 09 Jun 2016 04:58:31 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.183]) by IRSMSX102.ger.corp.intel.com ([169.254.2.10]) with mapi id 14.03.0248.002; Thu, 9 Jun 2016 12:58:30 +0100 From: "De Lara Guarch, Pablo" To: "Gonzalez Monroy, Sergio" , "dev@dpdk.org" CC: "Mcnamara, John" Thread-Topic: [PATCH v3 0/9] IPSec Enhancements Thread-Index: AQHRwirzUH47A1O1z0mfrGaU9bYysJ/g3RKg Date: Thu, 9 Jun 2016 11:58:30 +0000 Message-ID: References: <1463575330-8467-1-git-send-email-sergio.gonzalez.monroy@intel.com> <1465461770-42233-1-git-send-email-sergio.gonzalez.monroy@intel.com> In-Reply-To: <1465461770-42233-1-git-send-email-sergio.gonzalez.monroy@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNDAwMWZiNGUtNTI2Zi00NDU1LTgzZWMtOGI2MWFkMGE5ZGM5IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IjhETldEd0xxeXhuakFWS2s3dkdmWkg1SVBGZ05xVGR3MklLQ3FETytwaTQ9In0= x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 0/9] IPSec Enhancements X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jun 2016 11:58:33 -0000 > -----Original Message----- > From: Gonzalez Monroy, Sergio > Sent: Thursday, June 09, 2016 9:43 AM > To: dev@dpdk.org > Cc: De Lara Guarch, Pablo; Mcnamara, John > Subject: [PATCH v3 0/9] IPSec Enhancements >=20 > Update IPSec sample app with IPv6 and Transport mode support. >=20 > The series contains some bug fixes to facilitate patch merge. >=20 > v3: > - change ipip_inbound function to reurn void > - update some commit message and comments >=20 > v2: > - rebase code > - doc improvements > - add missing image file >=20 > Sergio Gonzalez Monroy (9): > examples/ipsec-secgw: fix esp padding check > examples/ipsec-secgw: fix stack smashing error > examples/ipsec-secgw: add build option and cleanup > examples/ipsec-secgw: rework ipsec execution loop > examples/ipsec-secgw: fix no sa found case > examples/ipsec-secgw: consistent config variable names > examples/ipsec-secgw: ipv6 support > examples/ipsec-secgw: transport mode support > doc: update ipsec sample guide >=20 > doc/guides/sample_app_ug/img/ipsec_endpoints.svg | 850 > +++++++++++++++++++++ > doc/guides/sample_app_ug/ipsec_secgw.rst | 910 ++++++++++++++---= --- > --- > examples/ipsec-secgw/Makefile | 8 +- > examples/ipsec-secgw/esp.c | 210 ++++-- > examples/ipsec-secgw/esp.h | 9 +- > examples/ipsec-secgw/ipip.h | 149 +++- > examples/ipsec-secgw/ipsec-secgw.c | 332 ++++++--- > examples/ipsec-secgw/ipsec.c | 50 +- > examples/ipsec-secgw/ipsec.h | 63 +- > examples/ipsec-secgw/rt.c | 229 ++++-- > examples/ipsec-secgw/sa.c | 466 +++++++----- > examples/ipsec-secgw/sp.c | 366 --------- > examples/ipsec-secgw/sp4.c | 447 +++++++++++ > examples/ipsec-secgw/sp6.c | 448 +++++++++++ > 14 files changed, 3313 insertions(+), 1224 deletions(-) > create mode 100644 doc/guides/sample_app_ug/img/ipsec_endpoints.svg > delete mode 100644 examples/ipsec-secgw/sp.c > create mode 100644 examples/ipsec-secgw/sp4.c > create mode 100644 examples/ipsec-secgw/sp6.c >=20 > -- > 2.5.5 Series-acked-by: Pablo de Lara