refactor: rename packet_parse.cpp/h to packet_parser.cpp/h

This commit is contained in:
luwenpeng
2024-08-16 11:49:54 +08:00
parent d2de4bd328
commit ebf1dad62c
33 changed files with 34 additions and 34 deletions

View File

@@ -43,8 +43,8 @@ target_link_libraries(gtest_gtp2_utils packet gtest)
add_executable(gtest_packet_frag gtest_packet_frag.cpp)
target_link_libraries(gtest_packet_frag packet gtest)
add_executable(gtest_packet_parse gtest_packet_parse.cpp)
target_link_libraries(gtest_packet_parse packet gtest)
add_executable(gtest_packet_parser gtest_packet_parser.cpp)
target_link_libraries(gtest_packet_parser packet gtest)
add_executable(gtest_packet_craft gtest_packet_craft.cpp)
target_link_libraries(gtest_packet_craft packet gtest)
@@ -68,6 +68,6 @@ gtest_discover_tests(gtest_l2tp_utils)
gtest_discover_tests(gtest_gtp1_utils)
gtest_discover_tests(gtest_gtp2_utils)
gtest_discover_tests(gtest_packet_frag)
gtest_discover_tests(gtest_packet_parse)
gtest_discover_tests(gtest_packet_parser)
gtest_discover_tests(gtest_packet_craft)
gtest_discover_tests(gtest_packet_ldbc)