From: Pooventhiran G Date: Mon, 16 Jun 2025 11:19:02 +0000 (+0530) Subject: nl80211: Register for Link Reconfiguration Request frame X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80faa2c29bbf0492d386650ccc807d398584a860;p=thirdparty%2Fhostap.git nl80211: Register for Link Reconfiguration Request frame This is needed for the AP MLD implementation of link reconfiguration for MLO that was added in the prior commits. Reviewed-by: Rohan Dutta Signed-off-by: Pooventhiran G --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 26213be6f..6c87e3c94 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -2845,6 +2845,11 @@ static int nl80211_action_subscribe_ap(struct i802_bss *bss) if (nl80211_register_action_frame(bss, (u8 *) "\x12", 1) < 0) ret = -1; #endif /* CONFIG_FST */ +#ifdef CONFIG_IEEE80211BE + /* Protected EHT - Link Reconfiguration Request */ + if (nl80211_register_action_frame(bss, (u8 *) "\x25\x0b", 2) < 0) + ret = -1; +#endif /* CONFIG_IEEE80211BE */ /* Vendor-specific Protected */ if (nl80211_register_action_frame(bss, (u8 *) "\x7e", 1) < 0) ret = -1;