Home
last modified time | relevance | path

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

123456789

/hostap-latest/src/ap/
Dap_config.c190 struct hostapd_config *conf; in hostapd_config_defaults() local
213 conf = os_zalloc(sizeof(*conf)); in hostapd_config_defaults()
215 if (conf == NULL || bss == NULL) { in hostapd_config_defaults()
218 os_free(conf); in hostapd_config_defaults()
222 conf->bss = os_calloc(1, sizeof(struct hostapd_bss_config *)); in hostapd_config_defaults()
223 if (conf->bss == NULL) { in hostapd_config_defaults()
224 os_free(conf); in hostapd_config_defaults()
228 conf->bss[0] = bss; in hostapd_config_defaults()
232 os_free(conf->bss); in hostapd_config_defaults()
233 os_free(conf); in hostapd_config_defaults()
[all …]
Dauthsrv.c108 struct hostapd_bss_config *conf = hapd->conf; in hostapd_setup_radius_srv() local
126 srv.client_file = conf->radius_server_clients; in hostapd_setup_radius_srv()
127 srv.auth_port = conf->radius_server_auth_port; in hostapd_setup_radius_srv()
128 srv.acct_port = conf->radius_server_acct_port; in hostapd_setup_radius_srv()
130 srv.ipv6 = conf->radius_server_ipv6; in hostapd_setup_radius_srv()
132 srv.eap_req_id_text = conf->eap_req_id_text; in hostapd_setup_radius_srv()
133 srv.eap_req_id_text_len = conf->eap_req_id_text_len; in hostapd_setup_radius_srv()
134 srv.sqlite_file = conf->eap_user_sqlite; in hostapd_setup_radius_srv()
136 srv.dump_msk_file = conf->dump_msk_file; in hostapd_setup_radius_srv()
139 srv.subscr_remediation_url = conf->subscr_remediation_url; in hostapd_setup_radius_srv()
[all …]
Dwpa_auth_ie.c28 static int wpa_write_wpa_ie(struct wpa_auth_config *conf, u8 *buf, size_t len) in wpa_write_wpa_ie() argument
41 suite = wpa_cipher_to_suite(WPA_PROTO_WPA, conf->wpa_group); in wpa_write_wpa_ie()
44 conf->wpa_group); in wpa_write_wpa_ie()
53 num_suites = wpa_cipher_put_suites(pos, conf->wpa_pairwise); in wpa_write_wpa_ie()
56 conf->wpa_pairwise); in wpa_write_wpa_ie()
66 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X) { in wpa_write_wpa_ie()
71 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK) { in wpa_write_wpa_ie()
79 conf->wpa_key_mgmt); in wpa_write_wpa_ie()
92 static u16 wpa_own_rsn_capab(struct wpa_auth_config *conf, in wpa_own_rsn_capab() argument
97 if (conf->rsn_preauth) in wpa_own_rsn_capab()
[all …]
Dhostapd.c129 hostapd_setup_encryption(hapd->conf->iface, hapd); in hostapd_reconfig_encryption()
141 if (hapd->conf->wmm_enabled < 0) in hostapd_reload_bss()
142 hapd->conf->wmm_enabled = hapd->iconf->ieee80211n | in hostapd_reload_bss()
146 radius_client_reconfig(hapd->radius, hapd->conf->radius); in hostapd_reload_bss()
149 ssid = &hapd->conf->ssid; in hostapd_reload_bss()
156 hostapd_config_clear_wpa_psk(&hapd->conf->ssid.wpa_psk); in hostapd_reload_bss()
158 if (hostapd_setup_wpa_psk(hapd->conf)) { in hostapd_reload_bss()
163 if (hapd->conf->ieee802_1x || hapd->conf->wpa) in hostapd_reload_bss()
164 hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 1); in hostapd_reload_bss()
166 hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 0); in hostapd_reload_bss()
[all …]
Dhw_features.c188 if (iface->conf->basic_rates) in hostapd_prepare_rates()
189 basic_rates = iface->conf->basic_rates; in hostapd_prepare_rates()
230 if (iface->conf->supported_rates && in hostapd_prepare_rates()
231 !hostapd_rate_found(iface->conf->supported_rates, in hostapd_prepare_rates()
247 (!iface->conf->ieee80211n || !iface->conf->require_ht)) { in hostapd_prepare_rates()
264 sec_freq = pri_freq + iface->conf->secondary_channel * 20; in ieee80211n_allowed_ht40_channel_pair()
284 if (iface->conf->secondary_channel > 0) { in ieee80211n_switch_pri_sec()
285 iface->conf->channel += 4; in ieee80211n_switch_pri_sec()
287 iface->conf->secondary_channel = -1; in ieee80211n_switch_pri_sec()
289 iface->conf->channel -= 4; in ieee80211n_switch_pri_sec()
[all …]
Dieee802_11_shared.c46 if (hapd->conf->assoc_sa_query_max_timeout > tu) in hostapd_eid_assoc_comeback_time()
47 timeout = hapd->conf->assoc_sa_query_max_timeout - tu; in hostapd_eid_assoc_comeback_time()
50 if (timeout < hapd->conf->assoc_sa_query_max_timeout) in hostapd_eid_assoc_comeback_time()
54 if (hapd->conf->test_assoc_comeback_type != -1) in hostapd_eid_assoc_comeback_time()
55 type = hapd->conf->test_assoc_comeback_type; in hostapd_eid_assoc_comeback_time()
89 if (hapd->conf->oci_freq_override_saquery_req) { in ieee802_11_send_sa_query_req()
93 hapd->conf->oci_freq_override_saquery_req); in ieee802_11_send_sa_query_req()
95 hapd->conf->oci_freq_override_saquery_req; in ieee802_11_send_sa_query_req()
184 if (hapd->conf->oci_freq_override_saquery_resp) { in ieee802_11_send_sa_query_resp()
188 hapd->conf->oci_freq_override_saquery_resp); in ieee802_11_send_sa_query_resp()
[all …]
Dwpa_auth_glue.c38 static void hostapd_wpa_auth_conf(struct hostapd_bss_config *conf, in hostapd_wpa_auth_conf() argument
45 wconf->wpa = conf->wpa; in hostapd_wpa_auth_conf()
46 wconf->extended_key_id = conf->extended_key_id; in hostapd_wpa_auth_conf()
47 wconf->wpa_key_mgmt = conf->wpa_key_mgmt; in hostapd_wpa_auth_conf()
48 wconf->rsn_override_key_mgmt = conf->rsn_override_key_mgmt; in hostapd_wpa_auth_conf()
49 wconf->rsn_override_key_mgmt_2 = conf->rsn_override_key_mgmt_2; in hostapd_wpa_auth_conf()
50 wconf->wpa_pairwise = conf->wpa_pairwise; in hostapd_wpa_auth_conf()
51 wconf->wpa_group = conf->wpa_group; in hostapd_wpa_auth_conf()
52 wconf->wpa_group_rekey = conf->wpa_group_rekey; in hostapd_wpa_auth_conf()
53 wconf->wpa_strict_rekey = conf->wpa_strict_rekey; in hostapd_wpa_auth_conf()
[all …]
Ddfs.c39 iface->conf->enable_background_radar; in dfs_use_radar_background()
49 if (iface->conf->ieee80211n && iface->conf->secondary_channel) in dfs_get_used_n_chans()
52 if (iface->conf->ieee80211ac || iface->conf->ieee80211ax) { in dfs_get_used_n_chans()
53 switch (hostapd_get_oper_chwidth(iface->conf)) { in dfs_get_used_n_chans()
227 if (!iface->conf->acs_ch_list.num) in is_in_chanlist()
230 return freq_range_list_includes(&iface->conf->acs_ch_list, chan->chan); in is_in_chanlist()
257 if (iface->conf->ieee80211n && in dfs_find_channel()
258 iface->conf->secondary_channel && in dfs_find_channel()
282 if (chan->max_tx_power < iface->conf->min_tx_power) in dfs_find_channel()
286 iface->conf->country[2] == 0x4f) in dfs_find_channel()
[all …]
Dwps_hostapd.c65 (hapd->conf->wps_independent || in wps_for_each()
66 data->calling_hapd->conf->wps_independent)) in wps_for_each()
101 struct hostapd_ssid *ssid = &hapd->conf->ssid; in hostapd_wps_new_psk_cb()
193 if (hapd->conf->wps_pin_requests) { in hostapd_wps_pin_needed_cb()
196 f = fopen(hapd->conf->wps_pin_requests, "a"); in hostapd_wps_pin_needed_cb()
282 for (wpa_psk = hapd->conf->ssid.wpa_psk; wpa_psk; in hostapd_wps_lookup_pskfile_cb()
356 struct hostapd_bss_config *bss = hapd->conf; in hapd_wps_reconfig_in_memory()
407 if (hapd->conf->wps_cred_add_sae && in hapd_wps_reconfig_in_memory()
483 if ((hapd->conf->wps_cred_processing == 1 || in hapd_wps_cred_cb()
484 hapd->conf->wps_cred_processing == 2) && cred->cred_attr) { in hapd_wps_cred_cb()
[all …]
Dbeacon.c46 if (hapd->conf->bss_load_test_set) { in hostapd_eid_bss_load()
49 os_memcpy(eid, hapd->conf->bss_load_test, 5); in hostapd_eid_bss_load()
54 if (hapd->conf->bss_load_update_period) { in hostapd_eid_bss_load()
366 if (hapd->conf->no_beacon_rsnxe) { in hostapd_get_rsnxe()
558 (iface->conf->mbssid == ENHANCED_MBSSID_ENABLED && in ieee802_11_build_ap_params_mbssid()
573 if (!len || (iface->conf->mbssid == ENHANCED_MBSSID_ENABLED && in ieee802_11_build_ap_params_mbssid()
599 params->mbssid_tx_iface = tx_bss->conf->iface; in ieee802_11_build_ap_params_mbssid()
609 if (iface->conf->mbssid == ENHANCED_MBSSID_ENABLED) in ieee802_11_build_ap_params_mbssid()
629 if (iface->conf->mbssid == ENHANCED_MBSSID_ENABLED) { in hostapd_eid_mbssid_config()
646 if (!hapd->iconf->ieee80211ax || hapd->conf->disable_11ax) in he_elem_len()
[all …]
Dacs.c577 if (!iface->conf->acs_ch_list.num) in is_in_chanlist()
580 return freq_range_list_includes(&iface->conf->acs_ch_list, chan->chan); in is_in_chanlist()
587 if (!iface->conf->acs_freq_list.num) in is_in_freqlist()
590 return freq_range_list_includes(&iface->conf->acs_freq_list, in is_in_freqlist()
608 iface->conf->acs_exclude_dfs) in acs_survey_mode_interference_factor()
617 if (chan->max_tx_power < iface->conf->min_tx_power) in acs_survey_mode_interference_factor()
621 iface->conf->country[2] == 0x4f) in acs_survey_mode_interference_factor()
748 struct hostapd_config *conf = iface->conf; in acs_update_puncturing_bitmap() local
757 if (!conf->punct_acs_threshold || conf->punct_bitmap) in acs_update_puncturing_bitmap()
763 threshold = factor * conf->punct_acs_threshold / 100; in acs_update_puncturing_bitmap()
[all …]
Dgas_serv.c74 hapd->conf->gas_comeback_delay / 1024 + in gas_dialog_create()
172 if (hapd->conf->hs20_oper_friendly_name) in anqp_add_hs_capab_list()
174 if (hapd->conf->hs20_wan_metrics) in anqp_add_hs_capab_list()
176 if (hapd->conf->hs20_connection_capability) in anqp_add_hs_capab_list()
178 if (hapd->conf->nai_realm_data) in anqp_add_hs_capab_list()
180 if (hapd->conf->hs20_operating_class) in anqp_add_hs_capab_list()
182 if (hapd->conf->hs20_osu_providers_count) in anqp_add_hs_capab_list()
184 if (hapd->conf->hs20_osu_providers_nai_count) in anqp_add_hs_capab_list()
186 if (hapd->conf->hs20_icons_count) in anqp_add_hs_capab_list()
188 if (hapd->conf->hs20_operator_icon_count) in anqp_add_hs_capab_list()
[all …]
Dap_config.h1263 hostapd_get_oper_chwidth(struct hostapd_config *conf) in hostapd_get_oper_chwidth() argument
1266 if (conf->ieee80211be) in hostapd_get_oper_chwidth()
1267 return conf->eht_oper_chwidth; in hostapd_get_oper_chwidth()
1270 if (conf->ieee80211ax) in hostapd_get_oper_chwidth()
1271 return conf->he_oper_chwidth; in hostapd_get_oper_chwidth()
1273 return conf->vht_oper_chwidth; in hostapd_get_oper_chwidth()
1277 hostapd_set_oper_chwidth(struct hostapd_config *conf, in hostapd_set_oper_chwidth() argument
1281 if (conf->ieee80211be) in hostapd_set_oper_chwidth()
1282 conf->eht_oper_chwidth = oper_chwidth; in hostapd_set_oper_chwidth()
1287 if (conf->ieee80211ax) in hostapd_set_oper_chwidth()
[all …]
Dieee802_11_he.c105 switch (hapd->iface->conf->he_oper_chwidth) { in hostapd_eid_he_capab()
142 if (hapd->iface->conf->he_phy_capab.he_su_beamformer) in hostapd_eid_he_capab()
149 if (hapd->iface->conf->he_phy_capab.he_su_beamformee) in hostapd_eid_he_capab()
156 if (hapd->iface->conf->he_phy_capab.he_mu_beamformer) in hostapd_eid_he_capab()
192 if (hapd->iface->conf->he_op.he_default_pe_duration) in hostapd_eid_he_operation()
193 params |= (hapd->iface->conf->he_op.he_default_pe_duration << in hostapd_eid_he_operation()
196 if (hapd->iface->conf->he_op.he_twt_required) in hostapd_eid_he_operation()
199 if (hapd->iface->conf->he_op.he_rts_threshold) in hostapd_eid_he_operation()
200 params |= (hapd->iface->conf->he_op.he_rts_threshold << in hostapd_eid_he_operation()
203 if (hapd->iface->conf->he_op.he_er_su_disable) in hostapd_eid_he_operation()
[all …]
Dhs20.c24 u8 conf; in hostapd_eid_hs20_indication() local
25 if (!hapd->conf->hs20) in hostapd_eid_hs20_indication()
28 *eid++ = hapd->conf->hs20_release < 2 ? 5 : 7; in hostapd_eid_hs20_indication()
32 conf = (hapd->conf->hs20_release - 1) << 4; /* Release Number */ in hostapd_eid_hs20_indication()
33 if (hapd->conf->hs20_release >= 2) in hostapd_eid_hs20_indication()
34 conf |= HS20_ANQP_DOMAIN_ID_PRESENT; in hostapd_eid_hs20_indication()
35 if (hapd->conf->disable_dgaf) in hostapd_eid_hs20_indication()
36 conf |= HS20_DGAF_DISABLED; in hostapd_eid_hs20_indication()
37 *eid++ = conf; in hostapd_eid_hs20_indication()
38 if (hapd->conf->hs20_release >= 2) { in hostapd_eid_hs20_indication()
[all …]
Dap_drv_ops.c134 if (hapd->conf->p2p & P2P_MANAGE) { in hostapd_build_ap_extra_ies()
152 if (hapd->conf->wps_state) { in hostapd_build_ap_extra_ies()
160 if (hapd->conf->p2p & P2P_MANAGE) { in hostapd_build_ap_extra_ies()
192 if (hapd->conf->mbo_enabled || in hostapd_build_ap_extra_ies()
209 add_buf(&beacon, hapd->conf->vendor_elements); in hostapd_build_ap_extra_ies()
210 add_buf(&proberesp, hapd->conf->vendor_elements); in hostapd_build_ap_extra_ies()
212 add_buf(&proberesp, hapd->conf->presp_elements); in hostapd_build_ap_extra_ies()
214 add_buf(&assocresp, hapd->conf->assocresp_elements); in hostapd_build_ap_extra_ies()
350 params.wpa = hapd->conf->wpa; in hostapd_set_drv_ieee8021x()
351 params.ieee802_1x = hapd->conf->ieee802_1x; in hostapd_set_drv_ieee8021x()
[all …]
Dwpa_auth.c324 if (!addr && idx < 4 && wpa_auth->conf.gtk_rsc_override_set) { in wpa_auth_get_seqnum()
329 WPA_GET_LE64(wpa_auth->conf.gtk_rsc_override)); in wpa_auth_get_seqnum()
330 os_memcpy(seq, wpa_auth->conf.gtk_rsc_override, in wpa_auth_get_seqnum()
334 wpa_auth->conf.igtk_rsc_override_set) { in wpa_auth_get_seqnum()
339 WPA_GET_LE64(wpa_auth->conf.igtk_rsc_override)); in wpa_auth_get_seqnum()
340 os_memcpy(seq, wpa_auth->conf.igtk_rsc_override, in wpa_auth_get_seqnum()
486 if (wpa_auth->conf.wpa_gmk_rekey) { in wpa_rekey_gmk()
487 eloop_register_timeout(wpa_auth->conf.wpa_gmk_rekey, 0, in wpa_rekey_gmk()
593 if (wpa_auth->conf.wpa_group_rekey) { in wpa_rekey_gtk()
594 eloop_register_timeout(wpa_auth->conf.wpa_group_rekey, in wpa_rekey_gtk()
[all …]
Dieee802_1x.c68 xhdr->version = hapd->conf->eapol_version; in ieee802_1x_send()
70 if (xhdr->version > 2 && hapd->conf->macsec_policy == 0) in ieee802_1x_send()
101 link_id = hapd->conf->mld_ap ? hapd->mld_link_id : -1; in ieee802_1x_send()
256 if (hapd->conf->eapol_key_index_workaround) { in ieee802_1x_tx_key_one()
287 hdr->version = hapd->conf->eapol_version; in ieee802_1x_tx_key_one()
328 hapd->conf->default_wep_key_len); in ieee802_1x_tx_key()
331 if (hapd->conf->individual_wep_key_len > 0) { in ieee802_1x_tx_key()
334 ikey = os_malloc(hapd->conf->individual_wep_key_len); in ieee802_1x_tx_key()
336 random_get_bytes(ikey, hapd->conf->individual_wep_key_len)) in ieee802_1x_tx_key()
345 ikey, hapd->conf->individual_wep_key_len); in ieee802_1x_tx_key()
[all …]
/hostap-latest/wpa_supplicant/
Dmesh.c85 struct mesh_conf *conf; in mesh_config_create() local
88 conf = os_zalloc(sizeof(struct mesh_conf)); in mesh_config_create()
89 if (!conf) in mesh_config_create()
92 os_memcpy(conf->meshid, ssid->ssid, ssid->ssid_len); in mesh_config_create()
93 conf->meshid_len = ssid->ssid_len; in mesh_config_create()
96 conf->security |= MESH_CONF_SEC_AUTH | in mesh_config_create()
99 conf->security |= MESH_CONF_SEC_NONE; in mesh_config_create()
100 conf->ieee80211w = ssid->ieee80211w; in mesh_config_create()
101 if (conf->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT) { in mesh_config_create()
103 conf->ieee80211w = wpa_s->conf->pmf; in mesh_config_create()
[all …]
Dap.c49 struct hostapd_config *conf) in is_chanwidth160_supported() argument
52 if (conf->ieee80211ax) { in is_chanwidth160_supported()
72 struct hostapd_config *conf, in wpas_conf_ap_vht() argument
77 u8 channel = conf->channel; in wpas_conf_ap_vht()
81 if (!conf->secondary_channel) in wpas_conf_ap_vht()
86 hostapd_set_oper_chwidth(conf, ssid->max_oper_chwidth); in wpas_conf_ap_vht()
87 if (hostapd_get_oper_chwidth(conf)) in wpas_conf_ap_vht()
89 hostapd_get_oper_chwidth(conf), in wpas_conf_ap_vht()
90 &conf->op_class, in wpas_conf_ap_vht()
91 &conf->channel); in wpas_conf_ap_vht()
[all …]
/hostap-latest/src/common/
Ddpp.c1061 struct dpp_configuration *conf; in dpp_configuration_alloc() local
1065 conf = os_zalloc(sizeof(*conf)); in dpp_configuration_alloc()
1066 if (!conf) in dpp_configuration_alloc()
1076 conf->akm = DPP_AKM_PSK; in dpp_configuration_alloc()
1078 conf->akm = DPP_AKM_SAE; in dpp_configuration_alloc()
1081 conf->akm = DPP_AKM_PSK_SAE; in dpp_configuration_alloc()
1084 conf->akm = DPP_AKM_SAE_DPP; in dpp_configuration_alloc()
1087 conf->akm = DPP_AKM_PSK_SAE_DPP; in dpp_configuration_alloc()
1089 conf->akm = DPP_AKM_DPP; in dpp_configuration_alloc()
1091 conf->akm = DPP_AKM_DOT1X; in dpp_configuration_alloc()
[all …]
/hostap-latest/src/radius/
Dradius_client.c171 struct hostapd_radius_servers *conf; member
378 struct hostapd_radius_servers *conf = radius->conf; in radius_client_retransmit() local
398 num_servers = conf->num_acct_servers; in radius_client_retransmit()
401 if (radius->acct_sock < 0 && conf->num_acct_servers > 1) { in radius_client_retransmit()
409 conf->acct_server->requests++; in radius_client_retransmit()
411 conf->acct_server->timeouts++; in radius_client_retransmit()
412 conf->acct_server->retransmissions++; in radius_client_retransmit()
419 num_servers = conf->num_auth_servers; in radius_client_retransmit()
422 if (radius->auth_sock < 0 && conf->num_auth_servers > 1) { in radius_client_retransmit()
430 conf->auth_server->requests++; in radius_client_retransmit()
[all …]
/hostap-latest/hostapd/
Dconfig_file.c252 struct hostapd_bss_config *conf) in hostapd_config_read_eap_user() argument
261 os_free(conf->eap_user_sqlite); in hostapd_config_read_eap_user()
262 conf->eap_user_sqlite = os_strdup(fname + 7); in hostapd_config_read_eap_user()
571 hostapd_config_free_eap_users(conf->eap_user); in hostapd_config_read_eap_user()
572 conf->eap_user = new_user; in hostapd_config_read_eap_user()
818 static int hostapd_parse_chanlist(struct hostapd_config *conf, char *val) in hostapd_parse_chanlist() argument
829 if (freq_range_list_parse(&conf->acs_ch_list, val)) in hostapd_parse_chanlist()
875 static int hostapd_config_bss(struct hostapd_config *conf, const char *ifname) in hostapd_config_bss() argument
882 all = os_realloc_array(conf->bss, conf->num_bss + 1, in hostapd_config_bss()
889 conf->bss = all; in hostapd_config_bss()
[all …]
/hostap-latest/wpa_supplicant/dbus/
Ddbus_new_handlers_wps.c361 dbus_bool_t process = wpa_s->conf->wps_cred_processing != 1; in wpas_dbus_getter_process_credentials()
391 old_pc = wpa_s->conf->wps_cred_processing != 1; in wpas_dbus_setter_process_credentials()
392 wpa_s->conf->wps_cred_processing = (process_credentials ? 2 : 1); in wpas_dbus_setter_process_credentials()
394 if ((wpa_s->conf->wps_cred_processing != 1) != old_pc) in wpas_dbus_setter_process_credentials()
421 wpa_s->conf->config_methods, in wpas_dbus_getter_config_methods()
451 os_free(wpa_s->conf->config_methods); in wpas_dbus_setter_config_methods()
452 wpa_s->conf->config_methods = new_methods; in wpas_dbus_setter_config_methods()
454 wpa_s->conf->changed_parameters |= CFG_CHANGED_CONFIG_METHODS; in wpas_dbus_setter_config_methods()
476 return wpas_dbus_string_property_getter(iter, wpa_s->conf->device_name, in wpas_dbus_getter_wps_device_name()
508 os_free(wpa_s->conf->device_name); in wpas_dbus_setter_wps_device_name()
[all …]
/hostap-latest/tests/fuzzing/eapol-key-auth/
Deapol-key-auth.c197 struct wpa_auth_config conf; in auth_init_group() local
201 os_memset(&conf, 0, sizeof(conf)); in auth_init_group()
203 conf.wpa = 1; in auth_init_group()
204 conf.wpa_key_mgmt = WPA_KEY_MGMT_PSK; in auth_init_group()
205 conf.wpa_pairwise = WPA_CIPHER_TKIP; in auth_init_group()
206 conf.wpa_group = WPA_CIPHER_TKIP; in auth_init_group()
208 conf.wpa = 2; in auth_init_group()
209 conf.wpa_key_mgmt = WPA_KEY_MGMT_PSK; in auth_init_group()
210 conf.wpa_pairwise = WPA_CIPHER_CCMP; in auth_init_group()
211 conf.rsn_pairwise = WPA_CIPHER_CCMP; in auth_init_group()
[all …]

123456789