aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/hostapd/src/src/utils/build_features.h
blob: c7fccad413b8c71795b826ffd1ee1b55e7d06a2c (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#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_IEEE80211AX
	if (!strcmp(feat, "11ax"))
		return 1;
#endif
#ifdef CONFIG_IEEE80211R
	if (!strcmp(feat, "11r"))
		return 1;
#endif
	if (!strcmp(feat, "11w"))
		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
#ifdef CONFIG_SUITEB192
	if (!strcmp(feat, "suiteb192"))
		return 1;
#endif
#ifdef CONFIG_WEP
	if (!strcmp(feat, "wep"))
		return 1;
#endif
#ifdef CONFIG_HS20
	if (!strcmp(feat, "hs20"))
		return 1;
#endif
#ifdef CONFIG_WPS
	if (!strcmp(feat, "wps"))
		return 1;
#endif
	return 0;
}

#endif /* BUILD_FEATURES_H */