From: Shivani Baranwal Date: Fri, 10 Oct 2025 07:09:56 +0000 (+0530) Subject: P2P2: Omit RSNXE in P2P Auto GO PCC mode X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b50fff1d1214ebc14308cb0f7ea9eefbbca1e7ca;p=thirdparty%2Fhostap.git P2P2: Omit RSNXE in P2P Auto GO PCC mode Omit the RSNXE when operating in P2P Auto GO PCC (Persistent Client Connectivity) mode (i.e., when RSN overriding is enabled) by setting rsn_override_omit_rsnxe config. This improves interoperability with STAs that might not be able handle RSNXE in this configuration. Signed-off-by: Shivani Baranwal --- diff --git a/wpa_supplicant/ap.c b/wpa_supplicant/ap.c index 311df6075..7cf557f08 100644 --- a/wpa_supplicant/ap.c +++ b/wpa_supplicant/ap.c @@ -585,6 +585,7 @@ static int wpa_supplicant_conf_ap(struct wpa_supplicant *wpa_s, bss->wpa_pairwise = WPA_CIPHER_CCMP; bss->rsn_override_pairwise = WPA_CIPHER_CCMP; bss->rsn_override_mfp = 2; + bss->rsn_override_omit_rsnxe = 1; } #endif /* CONFIG_P2P */