3e5f4625dc
Changes to make ipsec-secgw data-path code to utilize librte_ipsec library. Note that right now by default current (non-librte_ipsec) code-path will be used. User has to run application with new command-line option ('-l') to enable new codepath. Signed-off-by: Mohammad Abdul Awal <mohammad.abdul.awal@intel.com> Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com> Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com> Acked-by: Radu Nicolau <radu.nicolau@intel.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
15 lines
463 B
Meson
15 lines
463 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
# meson file, for building this example as part of a main DPDK build.
|
|
#
|
|
# To build this example as a standalone application with an already-installed
|
|
# DPDK instance, use 'make'
|
|
|
|
deps += ['security', 'lpm', 'acl', 'hash', 'ipsec']
|
|
allow_experimental_apis = true
|
|
sources = files(
|
|
'esp.c', 'ipsec.c', 'ipsec_process.c', 'ipsec-secgw.c',
|
|
'parser.c', 'rt.c', 'sa.c', 'sp4.c', 'sp6.c'
|
|
)
|