配置文件
/data/vendor/wifi/hostapd/hostapd_wlan0.conf
配置参数
AP启动过程:1.上层配置一些参数并根据参数生成配置文件
2.init的时候设置默认参数并加载配置文件上的参数(如果重复,以配置文件上的设置优先)
相关函数及结构体:
生成配置文件内容CreateHostapdConfig()
设置默认参数hostapd_config_defaults()
解析配置文件hostapd_config_fill()
参数结构体struct hostapd_config;struct hostapd_bss_config
hostapd_config_read
–>hostapd_config_defaults
–>hostapd_config_fill ---- 解析conf,保存到struct hostapd_config和struct hostapd_bss_config
生成beacon
struct wpa_driver_ap_params—u8 *tail 是所有ie字段(从TIM之后,如RSN到最后一个字段)
.set_ap=wpa_driver_nl80211_set_ap()
hostapd_build_beacon_data()
–>ieee802_11_build_ap_params() 初始化 struct wpa_driver_ap_params,根据struct hostapd_data. struct hostapd_config *iconf/ .struct hostapd_bss_config *conf; 内容赋值给wpa_driver_ap_params