https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf “IEEE 802.11n related configuration”
修改配置文件ht_capab字段 函数hostapd_config_ht_capab()
/* HT Capabilities Info field within HT Capabilities element */
#define HT_CAP_INFO_LDPC_CODING_CAP ((u16)…
Java里的List(集合)、Array(数组)、Map(字典)
List<String> L new ArrayList<>();(List是接口,ArrayList是接口的实现类)
int[] Y new int[2];(Java命名类型,int[]是个…