🦄 refactor(decoder glimpse detector): rename to lpi plugin

This commit is contained in:
yangwei
2024-08-28 20:45:57 +08:00
parent b2647a5a75
commit 2f586a456b
648 changed files with 125 additions and 181 deletions

View File

@@ -1,2 +1,2 @@
add_subdirectory(http)
add_subdirectory(glimpse_detector)
add_subdirectory(lpi)

View File

@@ -1,12 +0,0 @@
add_definitions(-fPIC)
add_subdirectory(libprotoident)
add_library(glimpse_detector app_l7_protocol.cpp quic_identify.cpp openvpn_identify.cpp)
target_include_directories(glimpse_detector PUBLIC ${CMAKE_SOURCE_DIR}/deps/)
target_link_libraries(glimpse_detector libprotoident)
set_target_properties(glimpse_detector PROPERTIES LINK_FLAGS
"-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/version.map")
#install(TARGETS ${PROJECT_NAME} LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/stellar_plugin COMPONENT LIBRARIES)

View File

@@ -1,10 +0,0 @@
VERS_2.4{
global:
extern "C" {
APP_GLIMPSE_DETECTOR_LOAD;
APP_GLIMPSE_DETECTOR_UNLOAD;
GIT_VERSION_*;
};
local: *;
};

View File

@@ -0,0 +1,12 @@
add_definitions(-fPIC)
add_subdirectory(libprotoident)
add_library(lpi lpi_plugin.cpp quic_ident.cpp openvpn_ident.cpp)
target_include_directories(lpi PUBLIC ${CMAKE_SOURCE_DIR}/deps/)
target_link_libraries(lpi libprotoident)
set_target_properties(lpi PROPERTIES LINK_FLAGS
"-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/version.map")
#install(TARGETS ${PROJECT_NAME} LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/stellar_plugin COMPONENT LIBRARIES)

Some files were not shown because too many files have changed in this diff Show More