Release 2.11 has been quite a few new features and fixes since the 2.10 release. The following ChangeLog entries highlight some of the main changes: * Wi-Fi Easy Connect - add support for DPP release 3 - allow Configurator parameters to be provided during config exchange * HE/IEEE 802.11ax/Wi-Fi 6 - various fixes * EHT/IEEE 802.11be/Wi-Fi 7 - add preliminary support * SAE: add support for fetching the password from a RADIUS server * support OpenSSL 3.0 API changes * support background radar detection and CAC with some additional drivers * support RADIUS ACL/PSK check during 4-way handshake (wpa_psk_radius=3) * EAP-SIM/AKA: support IMSI privacy * improve 4-way handshake operations - use Secure=1 in message 3 during PTK rekeying ...and many more Remove upstreamed patches: 023-ndisc_snoop-call-dl_list_del-before-freeing-ipv6-add.patch 030-driver_nl80211-rewrite-neigh-code-to-not-depend-on-l.patch 040-mesh-allow-processing-authentication-frames-in-block.patch 181-driver_nl80211-update-drv-ifindex-on-removing-the-fi.patch 182-nl80211-move-nl80211_put_freq_params-call-outside-of.patch 183-hostapd-cancel-channel_list_update_timeout-in-hostap.patch 210-build-de-duplicate-_DIRS-before-calling-mkdir.patch 253-qos_map_set_without_interworking.patch 751-qos_map_ignore_when_unsupported.patch 800-SAE-Check-for-invalid-Rejected-Groups-element-length.patch 801-SAE-Check-for-invalid-Rejected-Groups-element-length.patch 802-SAE-Reject-invalid-Rejected-Groups-element-in-the-pa.patch Other patches has been updated. Signed-off-by: Ivan Pavlov <AuthorReflex@gmail.com> Link: https://github.com/openwrt/openwrt/pull/16338 Signed-off-by: Robert Marko <robimarko@gmail.com>
34 lines
1.3 KiB
Diff
34 lines
1.3 KiB
Diff
From f0e9f5aab52b3eab85d28338cc996972ced4c39c Mon Sep 17 00:00:00 2001
|
|
From: David Bauer <mail@david-bauer.net>
|
|
Date: Tue, 17 May 2022 23:07:59 +0200
|
|
Subject: [PATCH] ctrl: make WNM_AP functions dependant on CONFIG_AP
|
|
|
|
This fixes linking errors found when compiling wpa_supplicant with
|
|
CONFIG_WNM_AP enabled but CONFIG_AP disabled.
|
|
|
|
Signed-off-by: David Bauer <mail@david-bauer.net>
|
|
---
|
|
wpa_supplicant/ctrl_iface.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/wpa_supplicant/ctrl_iface.c
|
|
+++ b/wpa_supplicant/ctrl_iface.c
|
|
@@ -13233,7 +13233,7 @@ char * wpa_supplicant_ctrl_iface_process
|
|
if (wpas_ctrl_iface_coloc_intf_report(wpa_s, buf + 18))
|
|
reply_len = -1;
|
|
#endif /* CONFIG_WNM */
|
|
-#ifdef CONFIG_WNM_AP
|
|
+#if defined(CONFIG_AP) && defined(CONFIG_WNM_AP)
|
|
} else if (os_strncmp(buf, "DISASSOC_IMMINENT ", 18) == 0) {
|
|
if (ap_ctrl_iface_disassoc_imminent(wpa_s, buf + 18))
|
|
reply_len = -1;
|
|
@@ -13243,7 +13243,7 @@ char * wpa_supplicant_ctrl_iface_process
|
|
} else if (os_strncmp(buf, "BSS_TM_REQ ", 11) == 0) {
|
|
if (ap_ctrl_iface_bss_tm_req(wpa_s, buf + 11))
|
|
reply_len = -1;
|
|
-#endif /* CONFIG_WNM_AP */
|
|
+#endif /* CONFIG_AP && CONFIG_WNM_AP */
|
|
} else if (os_strcmp(buf, "FLUSH") == 0) {
|
|
wpa_supplicant_ctrl_iface_flush(wpa_s);
|
|
} else if (os_strncmp(buf, "RADIO_WORK ", 11) == 0) {
|