diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2018-10-04 22:45:06 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-10-14 13:57:15 +0200 |
commit | 18c6c93a3b83831a1e7d7d80c22c477412c56cb4 (patch) | |
tree | f58dbbef6d8eaeb87d1a4d593336ee084c697240 /package/network/services/hostapd/src | |
parent | 4a009a16d2e87da3cd0b994934d3c3b76ca0455b (diff) | |
download | upstream-18c6c93a3b83831a1e7d7d80c22c477412c56cb4.tar.gz upstream-18c6c93a3b83831a1e7d7d80c22c477412c56cb4.tar.bz2 upstream-18c6c93a3b83831a1e7d7d80c22c477412c56cb4.zip |
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 <hauke@hauke-m.de>
Diffstat (limited to 'package/network/services/hostapd/src')
-rw-r--r-- | package/network/services/hostapd/src/src/utils/build_features.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 @@ -31,6 +31,10 @@ static inline int has_feature(const char *feat) if (!strcmp(feat, "sae")) return 1; #endif +#ifdef CONFIG_OWE + if (!strcmp(feat, "owe")) + return 1; +#endif return 0; } |