Home
last modified time | relevance | path

Searched refs:settings (Results 1 – 25 of 25) sorted by relevance

/hostap-latest/src/ap/
Dhostapd.c4338 struct csa_settings *settings) in hostapd_fill_csa_settings() argument
4352 switch (settings->freq_params.bandwidth) { in hostapd_fill_csa_settings()
4354 if (settings->freq_params.center_freq2) in hostapd_fill_csa_settings()
4371 settings->freq_params.freq, in hostapd_fill_csa_settings()
4372 settings->freq_params.sec_channel_offset, in hostapd_fill_csa_settings()
4378 settings->freq_params.freq, in hostapd_fill_csa_settings()
4379 settings->freq_params.sec_channel_offset, in hostapd_fill_csa_settings()
4380 settings->freq_params.vht_enabled, in hostapd_fill_csa_settings()
4381 settings->freq_params.he_enabled, in hostapd_fill_csa_settings()
4382 settings->freq_params.eht_enabled); in hostapd_fill_csa_settings()
[all …]
Dctrl_iface_ap.c1098 struct csa_settings *settings) in hostapd_parse_csa_settings() argument
1102 os_memset(settings, 0, sizeof(*settings)); in hostapd_parse_csa_settings()
1103 settings->cs_count = strtol(pos, &end, 10); in hostapd_parse_csa_settings()
1109 settings->freq_params.freq = atoi(end); in hostapd_parse_csa_settings()
1110 if (settings->freq_params.freq == 0) { in hostapd_parse_csa_settings()
1120 settings->freq_params.str = atoi(pos2); \ in hostapd_parse_csa_settings()
1129 settings->str = atoi(pos2); \ in hostapd_parse_csa_settings()
1138 settings->freq_params.ht_enabled = !!os_strstr(pos, " ht"); in hostapd_parse_csa_settings()
1139 settings->freq_params.vht_enabled = !!os_strstr(pos, " vht"); in hostapd_parse_csa_settings()
1140 settings->freq_params.he_enabled = !!os_strstr(pos, " he"); in hostapd_parse_csa_settings()
[all …]
Dap_drv_ops.h313 struct csa_settings *settings) in hostapd_drv_switch_channel() argument
319 return hapd->driver->switch_channel(hapd->drv_priv, settings); in hostapd_drv_switch_channel()
324 struct cca_settings *settings) in hostapd_drv_switch_color() argument
329 return hapd->driver->switch_color(hapd->drv_priv, settings); in hostapd_drv_switch_color()
Dctrl_iface_ap.h30 struct csa_settings *settings);
Dhostapd.h762 struct csa_settings *settings);
836 struct cca_settings *settings);
/hostap-latest/src/utils/
Dbrowser.c297 WebKitSettings *settings; in hs20_web_browser() local
299 WebKitWebSettings *settings; in hs20_web_browser() local
364 settings = webkit_web_view_get_settings(view); in hs20_web_browser()
365 g_object_set(G_OBJECT(settings), "user-agent", in hs20_web_browser()
369 g_object_set(G_OBJECT(settings), "auto-load-images", TRUE, NULL); in hs20_web_browser()
/hostap-latest/wpa_supplicant/
Dwps_supplicant.c1403 const char *pin, struct wps_new_ap_settings *settings) in wpas_wps_start_reg() argument
1430 if (settings) { in wpas_wps_start_reg()
1433 settings->ssid_hex, settings->auth, in wpas_wps_start_reg()
1434 settings->encr, settings->key_hex); in wpas_wps_start_reg()
2146 const char *pin, struct wps_new_ap_settings *settings) in wpas_wps_er_config() argument
2159 if (settings->ssid_hex == NULL || settings->auth == NULL || in wpas_wps_er_config()
2160 settings->encr == NULL || settings->key_hex == NULL) in wpas_wps_er_config()
2164 len = os_strlen(settings->ssid_hex); in wpas_wps_er_config()
2166 hexstr2bin(settings->ssid_hex, cred.ssid, len / 2)) in wpas_wps_er_config()
2170 len = os_strlen(settings->key_hex); in wpas_wps_er_config()
[all …]
Dwps_supplicant.h39 const char *pin, struct wps_new_ap_settings *settings);
60 const char *pin, struct wps_new_ap_settings *settings);
Dap.h73 struct csa_settings *settings);
Dap.c1828 struct csa_settings *settings) in ap_switch_channel() argument
1841 return hostapd_switch_channel(iface->bss[0], settings); in ap_switch_channel()
1851 struct csa_settings settings; in ap_ctrl_iface_chanswitch() local
1852 int ret = hostapd_parse_csa_settings(pos, &settings); in ap_ctrl_iface_chanswitch()
1857 settings.link_id = -1; in ap_ctrl_iface_chanswitch()
1859 return ap_switch_channel(wpa_s, &settings); in ap_ctrl_iface_chanswitch()
DREADME-WPS162 This is used to fetch the current AP settings instead of actually
306 - WPS ER learned AP settings
317 with a configuration token can be used to transfer AP settings without
Ddriver_i.h634 struct csa_settings *settings) in wpa_drv_switch_channel() argument
638 return wpa_s->driver->switch_channel(wpa_s->drv_priv, settings); in wpa_drv_switch_channel()
DChangeLog1205 WPS ER can learn the current AP settings, but cannot change them.
1209 current AP settings with wps_er_learn.
1211 learned AP settings, add wps_er_config command to configure an AP.
1225 - Honor AP TDLS settings that prohibit/allow TDLS.
DREADME-P2P110 returned, and may be filtered with p2p_serv_disc_req settings, and
DREADME1088 facilitates AP devices to configure DSCP settings for specific uplink
/hostap-latest/src/drivers/
Ddriver_nl80211.c11237 static int set_beacon_data(struct nl_msg *msg, struct beacon_data *settings) in set_beacon_data() argument
11239 if ((settings->head && in set_beacon_data()
11241 settings->head_len, settings->head)) || in set_beacon_data()
11242 (settings->tail && in set_beacon_data()
11244 settings->tail_len, settings->tail)) || in set_beacon_data()
11245 (settings->beacon_ies && in set_beacon_data()
11247 settings->beacon_ies_len, settings->beacon_ies)) || in set_beacon_data()
11248 (settings->proberesp_ies && in set_beacon_data()
11250 settings->proberesp_ies_len, settings->proberesp_ies)) || in set_beacon_data()
11251 (settings->assocresp_ies && in set_beacon_data()
[all …]
Ddriver.h4546 int (*switch_channel)(void *priv, struct csa_settings *settings);
4557 int (*switch_color)(void *priv, struct cca_settings *settings);
/hostap-latest/hostapd/
Dctrl_iface.c2657 struct csa_settings settings; in hostapd_ctrl_iface_chan_switch() local
2666 ret = hostapd_parse_csa_settings(pos, &settings); in hostapd_ctrl_iface_chan_switch()
2670 settings.link_id = -1; in hostapd_ctrl_iface_chan_switch()
2673 settings.link_id = iface->bss[0]->mld_link_id; in hostapd_ctrl_iface_chan_switch()
2676 ret = hostapd_ctrl_check_freq_params(&settings.freq_params, in hostapd_ctrl_iface_chan_switch()
2677 settings.punct_bitmap); in hostapd_ctrl_iface_chan_switch()
2684 switch (settings.freq_params.bandwidth) { in hostapd_ctrl_iface_chan_switch()
2689 if (settings.freq_params.center_freq2) in hostapd_ctrl_iface_chan_switch()
2705 if (settings.freq_params.center_freq1) in hostapd_ctrl_iface_chan_switch()
2707 iface, bandwidth, settings.freq_params.center_freq1); in hostapd_ctrl_iface_chan_switch()
[all …]
DREADME-WPS226 learn the current AP settings or to reconfigure the AP)
302 with a configuration token can be used to transfer AP settings without
DChangeLog642 registrar. It works in the same way as new AP settings received
682 WPS ER can learn the current AP settings, but cannot change them.
/hostap-latest/wpa_supplicant/wpa_gui-qt4/
Dwpagui.cpp147 QSettings settings("wpa_supplicant", "wpa_gui"); in WpaGui() local
148 settings.beginGroup("state"); in WpaGui()
149 if (app->sessionId().compare(settings.value("session_id"). in WpaGui()
151 startInTray = settings.value("in_tray").toBool(); in WpaGui()
152 settings.endGroup(); in WpaGui()
1907 QSettings settings("wpa_supplicant", "wpa_gui"); in saveState() local
1908 settings.beginGroup("state"); in saveState()
1909 settings.setValue("session_id", app->sessionId()); in saveState()
1910 settings.setValue("in_tray", inTray); in saveState()
1911 settings.endGroup(); in saveState()
/hostap-latest/src/wps/
Dwps_er.c292 struct wps_er_ap_settings *settings; in wps_er_ap_cache_settings() local
298 settings = wps_er_ap_get_settings(er, ap->uuid); in wps_er_ap_cache_settings()
299 if (!settings) { in wps_er_ap_cache_settings()
300 settings = os_zalloc(sizeof(*settings)); in wps_er_ap_cache_settings()
301 if (settings == NULL) in wps_er_ap_cache_settings()
303 os_memcpy(settings->uuid, ap->uuid, WPS_UUID_LEN); in wps_er_ap_cache_settings()
304 dl_list_add(&er->ap_settings, &settings->list); in wps_er_ap_cache_settings()
306 os_memcpy(&settings->ap_settings, ap->ap_settings, in wps_er_ap_cache_settings()
/hostap-latest/tests/hwsim/vm/
Dexample-vm-setup.txt17 - install the host system with default settings
/hostap-latest/tests/hwsim/
Dexample-setup.txt24 install the the guest system with default settings (i.e., no need to
/hostap-latest/doc/
Dctrl_iface.doxygen870 WPS_EVENT_NEW_AP_SETTINGS: New AP settings were received