1 #ifndef __LINUX_NL80211_H
2 #define __LINUX_NL80211_H
4 * 802.11 netlink interface public header
6 * Copyright 2006, 2007 Johannes Berg <johannes@sipsolutions.net>
10 * enum nl80211_iftype - (virtual) interface types
11 * @NL80211_IFTYPE_UNSPECIFIED: unspecified type, driver decides
12 * @NL80211_IFTYPE_ADHOC: independent BSS member
13 * @NL80211_IFTYPE_STATION: managed BSS member
14 * @NL80211_IFTYPE_AP: access point
15 * @NL80211_IFTYPE_AP_VLAN: VLAN interface for access points
16 * @NL80211_IFTYPE_WDS: wireless distribution interface
17 * @NL80211_IFTYPE_MONITOR: monitor interface receiving all frames
18 * @__NL80211_IFTYPE_AFTER_LAST: internal use
20 * These values are used with the NL80211_ATTR_IFTYPE
21 * to set the type of an interface.
25 NL80211_IFTYPE_UNSPECIFIED,
27 NL80211_IFTYPE_STATION,
29 NL80211_IFTYPE_AP_VLAN,
31 NL80211_IFTYPE_MONITOR,
34 __NL80211_IFTYPE_AFTER_LAST
36 #define NL80211_IFTYPE_MAX (__NL80211_IFTYPE_AFTER_LAST - 1)
38 #endif /* __LINUX_NL80211_H */