替换system函数,减少资源开销,用 posix_spawn函数
替换system函数,减少资源开销,用 posix_spawn函数 system("ifconfig wlan0 up 192.168.6.1");// 等价于
int set_wlan0_ap_ip(const char *iface, const char *ip)
{pid_t pid;char *argv[] {"ifconfig",iface,"up",ip,N…
2026/7/8 2:24:28