From be4d1aa2c58efa8287bca8795bc4a83cb448993a Mon Sep 17 00:00:00 2001 From: Ping Yu Date: Mon, 19 Aug 2019 07:01:17 -0400 Subject: tls: Add C API for TLS openssl to set engine Type: feature Parameters of the engine can be set by C API. After this patch, it is easier to integrate TLS into CSIT test. Change-Id: I063cabf613aabbfad831727551579328705afb41 Signed-off-by: Ping Yu --- src/plugins/tlsopenssl/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/plugins/tlsopenssl/CMakeLists.txt') diff --git a/src/plugins/tlsopenssl/CMakeLists.txt b/src/plugins/tlsopenssl/CMakeLists.txt index ad34cfaa90d..07b587b4ca3 100644 --- a/src/plugins/tlsopenssl/CMakeLists.txt +++ b/src/plugins/tlsopenssl/CMakeLists.txt @@ -17,8 +17,19 @@ if(OPENSSL_FOUND) add_vpp_plugin(tlsopenssl SOURCES tls_openssl.c + tls_openssl_api.c tls_async.c + API_FILES + tls_openssl.api + + INSTALL_HEADERS + tls_openssl_all_api_h.h + tls_openssl_msg_enum.h + + API_TEST_SOURCES + tls_openssl_test.c + LINK_LIBRARIES ${OPENSSL_LIBRARIES} ) -- cgit 1.2.3-korg