Files
vpp/src/plugins/ikev2/CMakeLists.txt
T
Stanislav Zaikin 0f2c6cd1ab ikev2: handoff packets
current approach saves state in per-thread data structure. in
multi-worker + nat-t cases udp/500 and udp/4500 might be dispatched on
different workers. this patch adds hands off packet to 1 explicit thread
- 1st worker (or main thread in case there're no workers) or to thread
  that was explicitly set by user via configuration

Type: improvement

Change-Id: Ib5cd9a4b8612dfaa63b276035709524f7a492d4f
Signed-off-by: Stanislav Zaikin <stanislav.zaikin@46labs.com>
2024-08-07 12:07:13 +00:00

46 lines
1.1 KiB
CMake

# Copyright (c) 2018 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
if(NOT OPENSSL_FOUND)
message(WARNING "openssl headers not found - ikev2 plugin disabled")
return()
endif()
include_directories(${OPENSSL_INCLUDE_DIR})
add_compile_definitions(OPENSSL_SUPPRESS_DEPRECATED)
add_vpp_plugin(ikev2
SOURCES
ikev2.c
ikev2_api.c
ikev2_cli.c
ikev2_crypto.c
ikev2_format.c
ikev2_payload.c
ikev2_handoff.c
API_FILES
ikev2_types.api
ikev2.api
API_TEST_SOURCES
ikev2_test.c
INSTALL_HEADERS
ikev2.h
ikev2_priv.h
LINK_LIBRARIES
${OPENSSL_CRYPTO_LIBRARIES}
)