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.
12 lines
222 B
C
12 lines
222 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
// dos.c
|
|
void start_dos(const char *t_ip, uint16_t t_port, int turn);
|
|
|
|
// arp.c
|
|
void arp_scan_task(void *pvParameters);
|
|
|
|
// ping.c
|
|
int do_ping_cmd(int argc, char **argv, const char *req);
|