6015e6a133
sa.c becomes too big, so decided to split it into 3 chunks: - sa.c - control path related functions (init/fini, etc.) - esp_inb.c - ESP inbound packet processing - esp_outb.c - ESP outbound packet processing Plus few changes in internal function names to follow the same code convention. No functional changes introduced. Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
11 lines
298 B
Meson
11 lines
298 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
allow_experimental_apis = true
|
|
|
|
sources=files('esp_inb.c', 'esp_outb.c', 'sa.c', 'ses.c')
|
|
|
|
install_headers = files('rte_ipsec.h', 'rte_ipsec_group.h', 'rte_ipsec_sa.h')
|
|
|
|
deps += ['mbuf', 'net', 'cryptodev', 'security']
|