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.
14 lines
355 B
C
14 lines
355 B
C
/*
|
|
* hp_net_monitor.h
|
|
* Network anomaly detector: port scan, SYN flood, ARP flood/spoof.
|
|
* Runs a periodic task that inspects counters updated from raw sockets.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
void hp_net_monitor_start(void);
|
|
void hp_net_monitor_stop(void);
|
|
bool hp_net_monitor_running(void);
|
|
int hp_net_monitor_status(char *buf, size_t len);
|