From patchwork Thu Oct 10 16:52:14 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vladimir Medvedkin X-Patchwork-Id: 60916 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2D9FB1E9D1; Thu, 10 Oct 2019 18:52:20 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 53D551E935 for ; Thu, 10 Oct 2019 18:52:18 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 10 Oct 2019 09:52:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,280,1566889200"; d="scan'208";a="200526976" Received: from silpixa00400072.ir.intel.com ([10.237.222.213]) by FMSMGA003.fm.intel.com with ESMTP; 10 Oct 2019 09:52:16 -0700 From: Vladimir Medvedkin To: dev@dpdk.org Cc: konstantin.ananyev@intel.com, john.mcnamara@intel.com, marko.kovacevic@intel.com Date: Thu, 10 Oct 2019 17:52:14 +0100 Message-Id: <8860a2903b705d2b3e697fe7b9b79064aacaccdf.1570726287.git.vladimir.medvedkin@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH] doc: add doxygen documentation for ipsec library 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Added ipsec API from: - rte_ipsec.h - rte_ipsec_sa.h - rte_ipsec_group.h - rte_ipsec_sad.h Signed-off-by: Vladimir Medvedkin Acked-by: Akhil Goyal --- doc/api/doxy-api-index.md | 6 ++++++ doc/api/doxy-api.conf.in | 1 + 2 files changed, 7 insertions(+) diff --git a/doc/api/doxy-api-index.md b/doc/api/doxy-api-index.md index 6c2d888..d19ffdf 100644 --- a/doc/api/doxy-api-index.md +++ b/doc/api/doxy-api-index.md @@ -132,6 +132,12 @@ The public API headers are grouped by topics: [tailq] (@ref rte_tailq.h), [bitmap] (@ref rte_bitmap.h) +- **ipsec**: + [ipsec] (@ref rte_ipsec.h), + [ipsec_sa] (@ref rte_ipsec_sa.h), + [ipsec_group] (@ref rte_ipsec_group.h), + [ipsec_sad] (@ref rte_ipsec_sad.h) + - **packet framework**: * [port] (@ref rte_port.h): [ethdev] (@ref rte_port_ethdev.h), diff --git a/doc/api/doxy-api.conf.in b/doc/api/doxy-api.conf.in index 908cee8..d8dafb2 100644 --- a/doc/api/doxy-api.conf.in +++ b/doc/api/doxy-api.conf.in @@ -35,6 +35,7 @@ INPUT = @TOPDIR@/doc/api/doxy-api-index.md \ @TOPDIR@/lib/librte_gso \ @TOPDIR@/lib/librte_hash \ @TOPDIR@/lib/librte_ip_frag \ + @TOPDIR@/lib/librte_ipsec \ @TOPDIR@/lib/librte_jobstats \ @TOPDIR@/lib/librte_kni \ @TOPDIR@/lib/librte_kvargs \