aboutsummaryrefslogtreecommitdiffstats
path: root/package/network
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2017-02-19 22:04:16 +0100
committerJo-Philipp Wich <jo@mein.io>2017-03-01 01:18:58 +0100
commit709c326461553a9a8e511021b8f283d056d499b8 (patch)
treea969ce213babfd41fef379f17ba9a82cea2d1e70 /package/network
parentef5cb964b170d369e971371fe4644d17cf1b3c60 (diff)
downloadupstream-709c326461553a9a8e511021b8f283d056d499b8.tar.gz
upstream-709c326461553a9a8e511021b8f283d056d499b8.tar.bz2
upstream-709c326461553a9a8e511021b8f283d056d499b8.zip
hostapd: fix feature indication
- Fix eap test to work with standalone hostapd builds - Fix 11n test to check the correct define - Add 11ac, 11r and 11w tests Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'package/network')
-rw-r--r--package/network/services/hostapd/src/src/utils/build_features.h16
1 files changed, 14 insertions, 2 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 ffbb7978d9..315804361c 100644
--- a/package/network/services/hostapd/src/src/utils/build_features.h
+++ b/package/network/services/hostapd/src/src/utils/build_features.h
@@ -3,14 +3,26 @@
static inline int has_feature(const char *feat)
{
-#ifdef IEEE8021X_EAPOL
+#if defined(IEEE8021X_EAPOL) || (defined(HOSTAPD) && !defined(CONFIG_NO_RADIUS))
if (!strcmp(feat, "eap"))
return 1;
#endif
-#ifdef IEEE80211N
+#ifdef CONFIG_IEEE80211N
if (!strcmp(feat, "11n"))
return 1;
#endif
+#ifdef CONFIG_IEEE80211AC
+ if (!strcmp(feat, "11ac"))
+ return 1;
+#endif
+#ifdef CONFIG_IEEE80211R
+ if (!strcmp(feat, "11r"))
+ return 1;
+#endif
+#ifdef CONFIG_IEEE80211W
+ if (!strcmp(feat, "11w"))
+ return 1;
+#endif
return 0;
}