aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/hostapd/src/src/utils/build_features.h
blob: ba082dea14a445bf5aa5247ef6ecfb304fefba00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef BUILD_FEATURES_H
#define BUILD_FEATURES_H

static inline int has_feature(const char *feat)
{
#if defined(IEEE8021X_EAPOL) || (defined(HOSTAPD) && !defined(CONFIG_NO_RADIUS))
	if (!strcmp(feat, "eap"))
		return 1;
#endif
#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
#ifdef CONFIG_ACS
	if (!strcmp(feat, "acs"))
		return 1;
#endif
	return 0;
}

#endif /* BUILD_FEATURES_H */