You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/package/network/services/hostapd/src/src/utils/build_features.h

18 lines
278 B
C

#ifndef BUILD_FEATURES_H
#define BUILD_FEATURES_H
static inline int has_feature(const char *feat)
{
#ifdef IEEE8021X_EAPOL
if (!strcmp(feat, "eap"))
return 1;
#endif
#ifdef IEEE80211N
if (!strcmp(feat, "11n"))
return 1;
#endif
return 0;
}
#endif /* BUILD_FEATURES_H */