TSG-13629 tsg-service-chaining-engine解封装从SAPP收到的控制报文

This commit is contained in:
luwenpeng
2023-02-17 17:15:53 +08:00
parent 737ca3d4be
commit e6a3f5c1dc
6 changed files with 200 additions and 4 deletions

View File

@@ -22,6 +22,14 @@ add_executable(gtest_raw_packet gtest_raw_packet.cpp)
target_include_directories(gtest_raw_packet PUBLIC ${CMAKE_SOURCE_DIR}/common/include)
target_link_libraries(gtest_raw_packet common gtest)
###############################################################################
# gtest_ctrl_packet
###############################################################################
add_executable(gtest_ctrl_packet gtest_ctrl_packet.cpp)
target_include_directories(gtest_ctrl_packet PUBLIC ${CMAKE_SOURCE_DIR}/common/include)
target_link_libraries(gtest_ctrl_packet common gtest)
###############################################################################
# gtest_utils
###############################################################################
@@ -38,4 +46,5 @@ include(GoogleTest)
gtest_discover_tests(gtest_addr_tuple4)
gtest_discover_tests(gtest_session_table)
gtest_discover_tests(gtest_raw_packet)
gtest_discover_tests(gtest_ctrl_packet)
gtest_discover_tests(gtest_utils)