|
@@ -538,6 +538,9 @@
|
|
|
* OLBC handling in hostapd. Beacons are reported in %NL80211_CMD_FRAME
|
|
|
* messages. Note that per PHY only one application may register.
|
|
|
*
|
|
|
+ * @NL80211_CMD_SET_NOACK_MAP: sets a bitmap for the individual TIDs whether
|
|
|
+ * No Acknowledgement Policy should be applied.
|
|
|
+ *
|
|
|
* @NL80211_CMD_MAX: highest used command number
|
|
|
* @__NL80211_CMD_AFTER_LAST: internal use
|
|
|
*/
|
|
@@ -675,6 +678,8 @@ enum nl80211_commands {
|
|
|
|
|
|
NL80211_CMD_UNEXPECTED_4ADDR_FRAME,
|
|
|
|
|
|
+ NL80211_CMD_SET_NOACK_MAP,
|
|
|
+
|
|
|
/* add new commands above here */
|
|
|
|
|
|
/* used to define NL80211_CMD_MAX below */
|
|
@@ -1169,6 +1174,24 @@ enum nl80211_commands {
|
|
|
* @NL80211_ATTR_PROBE_RESP: Probe Response template data. Contains the entire
|
|
|
* probe-response frame. The DA field in the 802.11 header is zero-ed out,
|
|
|
* to be filled by the FW.
|
|
|
+ * @NL80211_ATTR_DISABLE_HT: Force HT capable interfaces to disable
|
|
|
+ * this feature. Currently, only supported in mac80211 drivers.
|
|
|
+ * @NL80211_ATTR_HT_CAPABILITY_MASK: Specify which bits of the
|
|
|
+ * ATTR_HT_CAPABILITY to which attention should be paid.
|
|
|
+ * Currently, only mac80211 NICs support this feature.
|
|
|
+ * The values that may be configured are:
|
|
|
+ * MCS rates, MAX-AMSDU, HT-20-40 and HT_CAP_SGI_40
|
|
|
+ * AMPDU density and AMPDU factor.
|
|
|
+ * All values are treated as suggestions and may be ignored
|
|
|
+ * by the driver as required. The actual values may be seen in
|
|
|
+ * the station debugfs ht_caps file.
|
|
|
+ *
|
|
|
+ * @NL80211_ATTR_DFS_REGION: region for regulatory rules which this country
|
|
|
+ * abides to when initiating radiation on DFS channels. A country maps
|
|
|
+ * to one DFS region.
|
|
|
+ *
|
|
|
+ * @NL80211_ATTR_NOACK_MAP: This u16 bitmap contains the No Ack Policy of
|
|
|
+ * up to 16 TIDs.
|
|
|
*
|
|
|
* @NL80211_ATTR_MAX: highest attribute number currently defined
|
|
|
* @__NL80211_ATTR_AFTER_LAST: internal use
|
|
@@ -1408,6 +1431,13 @@ enum nl80211_attrs {
|
|
|
|
|
|
NL80211_ATTR_PROBE_RESP,
|
|
|
|
|
|
+ NL80211_ATTR_DFS_REGION,
|
|
|
+
|
|
|
+ NL80211_ATTR_DISABLE_HT,
|
|
|
+ NL80211_ATTR_HT_CAPABILITY_MASK,
|
|
|
+
|
|
|
+ NL80211_ATTR_NOACK_MAP,
|
|
|
+
|
|
|
/* add attributes here, update the policy in nl80211.c */
|
|
|
|
|
|
__NL80211_ATTR_AFTER_LAST,
|
|
@@ -1506,7 +1536,11 @@ enum nl80211_iftype {
|
|
|
* @NL80211_STA_FLAG_WME: station is WME/QoS capable
|
|
|
* @NL80211_STA_FLAG_MFP: station uses management frame protection
|
|
|
* @NL80211_STA_FLAG_AUTHENTICATED: station is authenticated
|
|
|
- * @NL80211_STA_FLAG_TDLS_PEER: station is a TDLS peer
|
|
|
+ * @NL80211_STA_FLAG_TDLS_PEER: station is a TDLS peer -- this flag should
|
|
|
+ * only be used in managed mode (even in the flags mask). Note that the
|
|
|
+ * flag can't be changed, it is only valid while adding a station, and
|
|
|
+ * attempts to change it will silently be ignored (rather than rejected
|
|
|
+ * as errors.)
|
|
|
* @NL80211_STA_FLAG_MAX: highest station flag number currently defined
|
|
|
* @__NL80211_STA_FLAG_AFTER_LAST: internal use
|
|
|
*/
|
|
@@ -1621,6 +1655,7 @@ enum nl80211_sta_bss_param {
|
|
|
* containing info as possible, see &enum nl80211_sta_bss_param
|
|
|
* @NL80211_STA_INFO_CONNECTED_TIME: time since the station is last connected
|
|
|
* @NL80211_STA_INFO_STA_FLAGS: Contains a struct nl80211_sta_flag_update.
|
|
|
+ * @NL80211_STA_INFO_BEACON_LOSS: count of times beacon loss was detected (u32)
|
|
|
* @__NL80211_STA_INFO_AFTER_LAST: internal
|
|
|
* @NL80211_STA_INFO_MAX: highest possible station info attribute
|
|
|
*/
|
|
@@ -1643,6 +1678,7 @@ enum nl80211_sta_info {
|
|
|
NL80211_STA_INFO_BSS_PARAM,
|
|
|
NL80211_STA_INFO_CONNECTED_TIME,
|
|
|
NL80211_STA_INFO_STA_FLAGS,
|
|
|
+ NL80211_STA_INFO_BEACON_LOSS,
|
|
|
|
|
|
/* keep last */
|
|
|
__NL80211_STA_INFO_AFTER_LAST,
|
|
@@ -1916,6 +1952,21 @@ enum nl80211_reg_rule_flags {
|
|
|
NL80211_RRF_NO_IBSS = 1<<8,
|
|
|
};
|
|
|
|
|
|
+/**
|
|
|
+ * enum nl80211_dfs_regions - regulatory DFS regions
|
|
|
+ *
|
|
|
+ * @NL80211_DFS_UNSET: Country has no DFS master region specified
|
|
|
+ * @NL80211_DFS_FCC_: Country follows DFS master rules from FCC
|
|
|
+ * @NL80211_DFS_FCC_: Country follows DFS master rules from ETSI
|
|
|
+ * @NL80211_DFS_JP_: Country follows DFS master rules from JP/MKK/Telec
|
|
|
+ */
|
|
|
+enum nl80211_dfs_regions {
|
|
|
+ NL80211_DFS_UNSET = 0,
|
|
|
+ NL80211_DFS_FCC = 1,
|
|
|
+ NL80211_DFS_ETSI = 2,
|
|
|
+ NL80211_DFS_JP = 3,
|
|
|
+};
|
|
|
+
|
|
|
/**
|
|
|
* enum nl80211_survey_info - survey information
|
|
|
*
|
|
@@ -2049,6 +2100,13 @@ enum nl80211_mntr_flags {
|
|
|
* access to a broader network beyond the MBSS. This is done via Root
|
|
|
* Announcement frames.
|
|
|
*
|
|
|
+ * @NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL: The minimum interval of time (in
|
|
|
+ * TUs) during which a mesh STA can send only one Action frame containing a
|
|
|
+ * PERR element.
|
|
|
+ *
|
|
|
+ * @NL80211_MESHCONF_FORWARDING: set Mesh STA as forwarding or non-forwarding
|
|
|
+ * or forwarding entity (default is TRUE - forwarding entity)
|
|
|
+ *
|
|
|
* @NL80211_MESHCONF_ATTR_MAX: highest possible mesh configuration attribute
|
|
|
*
|
|
|
* @__NL80211_MESHCONF_ATTR_AFTER_LAST: internal use
|
|
@@ -2072,6 +2130,8 @@ enum nl80211_meshconf_params {
|
|
|
NL80211_MESHCONF_ELEMENT_TTL,
|
|
|
NL80211_MESHCONF_HWMP_RANN_INTERVAL,
|
|
|
NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
|
|
|
+ NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
|
|
|
+ NL80211_MESHCONF_FORWARDING,
|
|
|
|
|
|
/* keep last */
|
|
|
__NL80211_MESHCONF_ATTR_AFTER_LAST,
|
|
@@ -2735,9 +2795,11 @@ enum nl80211_ap_sme_features {
|
|
|
* @NL80211_FEATURE_SK_TX_STATUS: This driver supports reflecting back
|
|
|
* TX status to the socket error queue when requested with the
|
|
|
* socket option.
|
|
|
+ * @NL80211_FEATURE_HT_IBSS: This driver supports IBSS with HT datarates.
|
|
|
*/
|
|
|
enum nl80211_feature_flags {
|
|
|
NL80211_FEATURE_SK_TX_STATUS = 1 << 0,
|
|
|
+ NL80211_FEATURE_HT_IBSS = 1 << 1,
|
|
|
};
|
|
|
|
|
|
/**
|