Add VXLAN utils

This commit is contained in:
luwenpeng
2024-06-05 14:36:04 +08:00
parent bb469ca1ed
commit 3ce5ed11db
4 changed files with 123 additions and 8 deletions

View File

@@ -22,6 +22,9 @@ target_link_libraries(gtest_eth_utils packet gtest)
add_executable(gtest_vlan_utils gtest_vlan_utils.cpp)
target_link_libraries(gtest_vlan_utils packet gtest)
add_executable(gtest_vxlan_utils gtest_vxlan_utils.cpp)
target_link_libraries(gtest_vxlan_utils packet gtest)
add_executable(gtest_packet_frag gtest_packet_frag.cpp)
target_link_libraries(gtest_packet_frag packet gtest)
@@ -34,4 +37,5 @@ gtest_discover_tests(gtest_ipv6_utils)
gtest_discover_tests(gtest_mpls_utils)
gtest_discover_tests(gtest_eth_utils)
gtest_discover_tests(gtest_vlan_utils)
gtest_discover_tests(gtest_vxlan_utils)
gtest_discover_tests(gtest_packet_frag)