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 A2E81E6D for ; Tue, 12 Jul 2016 11:44:47 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP; 12 Jul 2016 02:44:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,351,1464678000"; d="scan'208";a="993538031" Received: from sie-lab-212-071.ir.intel.com (HELO silvfanzhan2.ir.intel.com) ([10.237.212.71]) by orsmga001.jf.intel.com with ESMTP; 12 Jul 2016 02:44:45 -0700 From: Fan Zhang To: dev@dpdk.org Cc: sergio.gonzalez.monroy@intel.com Date: Tue, 12 Jul 2016 10:44:42 +0100 Message-Id: <1468316684-220669-1-git-send-email-roy.fan.zhang@intel.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1468248213-13100-1-git-send-email-roy.fan.zhang@intel.com> References: <1468248213-13100-1-git-send-email-roy.fan.zhang@intel.com> Subject: [dpdk-dev] [PATCH v3 0/2] examples/ipsec_secgw: add configuration file support 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: Tue, 12 Jul 2016 09:44:48 -0000 This patchset adds the configuration file supported to ipsec_secgw sample application. Two sample configuration files, ep0.cfg and ep1.cfg are also added to show how to configure two systems back-to-back that would forward traffic through an IPsec tunnel v3 change: - fix 32-bit compilation error v2 changes: - fix configuration file parsing error. - update doc to remove whitespace tailing errors. Fan Zhang (2): examples/ipsec-secgw: add configuration file support examples/ipsec-secgw: add sample configuration files doc/guides/sample_app_ug/ipsec_secgw.rst | 809 ++++++++++++------------------- examples/ipsec-secgw/Makefile | 1 + examples/ipsec-secgw/ep0.cfg | 119 +++++ examples/ipsec-secgw/ep1.cfg | 119 +++++ examples/ipsec-secgw/ipsec-secgw.c | 58 +-- examples/ipsec-secgw/ipsec.h | 8 +- examples/ipsec-secgw/parser.c | 599 +++++++++++++++++++++++ examples/ipsec-secgw/parser.h | 116 +++++ examples/ipsec-secgw/rt.c | 255 +++++----- examples/ipsec-secgw/sa.c | 462 ++++++++++-------- examples/ipsec-secgw/sp4.c | 539 +++++++++++--------- examples/ipsec-secgw/sp6.c | 540 ++++++++++++++------- 12 files changed, 2354 insertions(+), 1271 deletions(-) create mode 100644 examples/ipsec-secgw/ep0.cfg create mode 100644 examples/ipsec-secgw/ep1.cfg create mode 100644 examples/ipsec-secgw/parser.c create mode 100644 examples/ipsec-secgw/parser.h -- 2.5.5