e95291f019
Add support for packets that consist of multiple segments. Take into account that trailer bytes (padding, ESP tail, ICV) can spawn across multiple segments. Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
31 lines
835 B
Makefile
31 lines
835 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
# library name
|
|
LIB = librte_ipsec.a
|
|
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR)
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
LDLIBS += -lrte_eal -lrte_mempool -lrte_mbuf -lrte_net
|
|
LDLIBS += -lrte_cryptodev -lrte_security
|
|
|
|
EXPORT_MAP := rte_ipsec_version.map
|
|
|
|
LIBABIVER := 1
|
|
|
|
# all source are stored in SRCS-y
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IPSEC) += esp_inb.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IPSEC) += esp_outb.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IPSEC) += sa.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IPSEC) += ses.c
|
|
|
|
# install header files
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_IPSEC)-include += rte_ipsec.h
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_IPSEC)-include += rte_ipsec_group.h
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_IPSEC)-include += rte_ipsec_sa.h
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|