hostapd: Activate Opportunistic Wireless Encryption (OWE)
[openwrt/openwrt.git] / package / network / services / hostapd / src / src / utils / build_features.h
index ba082dea14a445bf5aa5247ef6ecfb304fefba00..4013ae7b308d0137bdc9648f2723a11cfc9cf5e6 100644 (file)
@@ -26,6 +26,14 @@ static inline int has_feature(const char *feat)
 #ifdef CONFIG_ACS
        if (!strcmp(feat, "acs"))
                return 1;
 #ifdef CONFIG_ACS
        if (!strcmp(feat, "acs"))
                return 1;
+#endif
+#ifdef CONFIG_SAE
+       if (!strcmp(feat, "sae"))
+               return 1;
+#endif
+#ifdef CONFIG_OWE
+       if (!strcmp(feat, "owe"))
+               return 1;
 #endif
        return 0;
 }
 #endif
        return 0;
 }