From b50fff1d1214ebc14308cb0f7ea9eefbbca1e7ca Mon Sep 17 00:00:00 2001 From: Shivani Baranwal Date: Fri, 10 Oct 2025 12:39:56 +0530 Subject: [PATCH] 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 --- wpa_supplicant/ap.c | 1 + 1 file changed, 1 insertion(+) 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 */ -- 2.47.3