mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 17:01:14 +00:00
34705946e2
Drop outdated and by now broken patchset originally supplied by Peter Oh in August 2018 but never merged upstream. Instead add the more promissing rework recently submitted by Markus Theil who picked up Peter's patchset, fixed and completed it and added support for HE (802.11ax) in mesh mode. This is only compile tested and needs some real-life testing. Fixes: FS#3214 Fixes:167028b750
("hostapd: Update to version 2.9 (2019-08-08)") Fixes:0a3ec87a66
("hostapd: update to latest Git hostap_2_9-1238-gdd2daf0848ed") Fixes:017320ead3
("hostapd: bring back mesh patches") Signed-off-by: Daniel Golle <daniel@makrotopia.org>
26 lines
883 B
Diff
26 lines
883 B
Diff
From ff7fb3fa0831c8521327d777c5607a3b7d8736b8 Mon Sep 17 00:00:00 2001
|
|
From: Markus Theil <markus.theil@tu-ilmenau.de>
|
|
Date: Tue, 30 Jun 2020 13:53:21 +0200
|
|
Subject: [PATCH 05/19] wpa_supplicant: enable vht and he in default config
|
|
parameters
|
|
|
|
Enable VHT and HE as default config parameters in order for
|
|
wpa_supplicant AP mode to use it, if hw support is given.
|
|
|
|
Signed-off-by: Markus Theil <markus.theil@tu-ilmenau.de>
|
|
---
|
|
wpa_supplicant/config.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/wpa_supplicant/config.c
|
|
+++ b/wpa_supplicant/config.c
|
|
@@ -3036,6 +3036,8 @@ void wpa_config_set_network_defaults(str
|
|
ssid->wpa_deny_ptk0_rekey = PTK0_REKEY_ALLOW_ALWAYS;
|
|
ssid->bg_scan_period = DEFAULT_BG_SCAN_PERIOD;
|
|
ssid->ht = 1;
|
|
+ ssid->vht = 1;
|
|
+ ssid->he = 1;
|
|
#ifdef IEEE8021X_EAPOL
|
|
ssid->eapol_flags = DEFAULT_EAPOL_FLAGS;
|
|
ssid->eap_workaround = DEFAULT_EAP_WORKAROUND;
|