]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
nl80211: Register for Link Reconfiguration Request frame
authorPooventhiran G <quic_pooventh@quicinc.com>
Mon, 16 Jun 2025 11:19:02 +0000 (16:49 +0530)
committerJouni Malinen <j@w1.fi>
Wed, 18 Jun 2025 15:50:28 +0000 (18:50 +0300)
This is needed for the AP MLD implementation of link reconfiguration for
MLO that was added in the prior commits.

Reviewed-by: Rohan Dutta <quic_drohan@quicinc.com>
Signed-off-by: Pooventhiran G <quic_pooventh@quicinc.com>
src/drivers/driver_nl80211.c

index 26213be6fcd085453db2997ae8994c703c91623d..6c87e3c94d0a6da0af2dce73b1b40c95f76924c2 100644 (file)
@@ -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;