Home
last modified time | relevance | path

Searched refs:hapd_iface (Results 1 – 5 of 5) sorted by relevance

/hostap-latest/src/ap/
Dhostapd.c2878 hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface, in hostapd_alloc_bss_data() argument
2891 hapd->iface = hapd_iface; in hostapd_alloc_bss_data()
3019 struct hostapd_iface *hapd_iface; in hostapd_alloc_iface() local
3021 hapd_iface = os_zalloc(sizeof(*hapd_iface)); in hostapd_alloc_iface()
3022 if (!hapd_iface) in hostapd_alloc_iface()
3025 dl_list_init(&hapd_iface->sta_seen); in hostapd_alloc_iface()
3027 return hapd_iface; in hostapd_alloc_iface()
3194 struct hostapd_iface *hapd_iface = NULL; in hostapd_init() local
3199 hapd_iface = hostapd_alloc_iface(); in hostapd_init()
3200 if (hapd_iface == NULL) in hostapd_init()
[all …]
Dhostapd.h730 hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
746 int hostapd_enable_iface(struct hostapd_iface *hapd_iface);
747 int hostapd_reload_iface(struct hostapd_iface *hapd_iface);
749 int hostapd_disable_iface(struct hostapd_iface *hapd_iface);
/hostap-latest/tests/hwsim/
Dtest_eht.py296 with HWSimRadio(use_mlo=True) as (hapd_radio, hapd_iface), \
310 hapd0 = eht_mld_enable_ap(hapd_iface, link0_params)
311 hapd1 = eht_mld_enable_ap(hapd_iface, link1_params)
439 with HWSimRadio(use_mlo=True) as (hapd_radio, hapd_iface), \
449 hapd0 = eht_mld_enable_ap(hapd_iface, params)
462 with HWSimRadio(use_mlo=True) as (hapd_radio, hapd_iface), \
474 hapd0 = eht_mld_enable_ap(hapd_iface, params)
478 hapd1 = eht_mld_enable_ap(hapd_iface, params)
554 with HWSimRadio(use_mlo=True) as (hapd_radio, hapd_iface), \
564 hapd0 = eht_mld_enable_ap(hapd_iface, params)
[all …]
Dtest_rsn_override.py135 with HWSimRadio(use_mlo=True) as (hapd_radio, hapd_iface), \
179 hapd0 = eht_mld_enable_ap(hapd_iface, params)
184 hapd1 = eht_mld_enable_ap(hapd_iface, params1)
/hostap-latest/wpa_supplicant/
Dap.c973 struct hostapd_iface *hapd_iface; in wpa_supplicant_create_ap() local
1064 wpa_s->ap_iface = hapd_iface = hostapd_alloc_iface(); in wpa_supplicant_create_ap()
1065 if (hapd_iface == NULL) in wpa_supplicant_create_ap()
1067 hapd_iface->owner = wpa_s; in wpa_supplicant_create_ap()
1068 hapd_iface->drv_flags = wpa_s->drv_flags; in wpa_supplicant_create_ap()
1069 hapd_iface->drv_flags2 = wpa_s->drv_flags2; in wpa_supplicant_create_ap()
1070 hapd_iface->probe_resp_offloads = wpa_s->probe_resp_offloads; in wpa_supplicant_create_ap()
1071 hapd_iface->extended_capa = wpa_s->extended_capa; in wpa_supplicant_create_ap()
1072 hapd_iface->extended_capa_mask = wpa_s->extended_capa_mask; in wpa_supplicant_create_ap()
1073 hapd_iface->extended_capa_len = wpa_s->extended_capa_len; in wpa_supplicant_create_ap()
[all …]