Move command registry from components/command/ into components/core/. New modules: mod_canbus, mod_honeypot, mod_fallback, mod_redteam, mod_ota. Replace mod_proxy with tun_core (multiplexed SOCKS5 tunnel). Kconfig extended with per-module settings and async worker config.
10 lines
278 B
CMake
10 lines
278 B
CMake
set(SRCS "cmd_network.c" "mod_ping.c" "mod_arp.c" "mod_dos.c")
|
|
|
|
if(CONFIG_MODULE_TUNNEL)
|
|
list(APPEND SRCS "tun_core.c")
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${SRCS}
|
|
INCLUDE_DIRS .
|
|
REQUIRES lwip protocol_examples_common esp_wifi core)
|