58a8e49a98
Add 'uint64_t opaque_data' inside struct rte_security_session. That allows upper layer to easily associate some user defined data with the session. Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com> Acked-by: Mohammad Abdul Awal <mohammad.abdul.awal@intel.com> Acked-by: Declan Doherty <declan.doherty@intel.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
28 lines
531 B
Makefile
28 lines
531 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017-2019 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
# library name
|
|
LIB = librte_security.a
|
|
|
|
# library version
|
|
LIBABIVER := 2
|
|
|
|
# build flags
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
LDLIBS += -lrte_eal -lrte_mempool
|
|
|
|
# library source files
|
|
SRCS-y += rte_security.c
|
|
|
|
# export include files
|
|
SYMLINK-y-include += rte_security.h
|
|
SYMLINK-y-include += rte_security_driver.h
|
|
|
|
# versioning export map
|
|
EXPORT_MAP := rte_security_version.map
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|