From 18c6c93a3b83831a1e7d7d80c22c477412c56cb4 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Thu, 4 Oct 2018 22:45:06 +0200 Subject: hostapd: Activate Opportunistic Wireless Encryption (OWE) OWE is defined in RFC 8110 and provides encryption and forward security for open networks. This is based on the requirements in the Wifi alliance document Opportunistic_Wireless_Encryption_Specification_v1.0_0.pdf The wifi alliance requires ieee80211w for the OWE mode. This also makes it possible to configure the OWE transission mode which allows it operate an open and an OWE BSSID in parallel and the client should only show one network. This increases the ipkg size by 5.800 Bytes. Old: 402.541 Bytes New: 408.341 Bytes Signed-off-by: Hauke Mehrtens --- package/network/services/hostapd/src/src/utils/build_features.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'package/network/services/hostapd/src') diff --git a/package/network/services/hostapd/src/src/utils/build_features.h b/package/network/services/hostapd/src/src/utils/build_features.h index 328c76c67e..4013ae7b30 100644 --- a/package/network/services/hostapd/src/src/utils/build_features.h +++ b/package/network/services/hostapd/src/src/utils/build_features.h @@ -30,6 +30,10 @@ static inline int has_feature(const char *feat) #ifdef CONFIG_SAE if (!strcmp(feat, "sae")) return 1; +#endif +#ifdef CONFIG_OWE + if (!strcmp(feat, "owe")) + return 1; #endif return 0; } -- cgit v1.2.3