From: Peng Xu Date: Thu, 4 Apr 2019 23:03:20 +0000 (-0700) Subject: P2P: Enable HE for both 2G and 5G bands X-Git-Tag: hostap_2_8~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edcaf16f9efdbdbc3c5af719f414323096800100;p=thirdparty%2Fhostap.git P2P: Enable HE for both 2G and 5G bands Previously HE was only enabled for a 2G P2P GO. This change enables HE for both 2G and 5G P2P GO. Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/ap.c b/wpa_supplicant/ap.c index 453c99dd5..4e1916942 100644 --- a/wpa_supplicant/ap.c +++ b/wpa_supplicant/ap.c @@ -334,10 +334,13 @@ static int wpa_supplicant_conf_ap(struct wpa_supplicant *wpa_s, list[8] = -1; } conf->supported_rates = list; + } + #ifdef CONFIG_IEEE80211AX + if (ssid->mode == WPAS_MODE_P2P_GO || + ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) conf->ieee80211ax = ssid->he; #endif /* CONFIG_IEEE80211AX */ - } bss->isolate = !wpa_s->conf->p2p_intra_bss; bss->force_per_enrollee_psk = wpa_s->global->p2p_per_sta_psk;