|
@@ -695,6 +695,8 @@ enum nl80211_commands {
|
|
|
#define NL80211_CMD_DISASSOCIATE NL80211_CMD_DISASSOCIATE
|
|
|
#define NL80211_CMD_REG_BEACON_HINT NL80211_CMD_REG_BEACON_HINT
|
|
|
|
|
|
+#define NL80211_ATTR_FEATURE_FLAGS NL80211_ATTR_FEATURE_FLAGS
|
|
|
+
|
|
|
/* source-level API compatibility */
|
|
|
#define NL80211_CMD_GET_MESH_PARAMS NL80211_CMD_GET_MESH_CONFIG
|
|
|
#define NL80211_CMD_SET_MESH_PARAMS NL80211_CMD_SET_MESH_CONFIG
|
|
@@ -1156,6 +1158,9 @@ enum nl80211_commands {
|
|
|
* it will also not give a status callback nor return a cookie. This is
|
|
|
* mostly useful for probe responses to save airtime.
|
|
|
*
|
|
|
+ * @NL80211_ATTR_FEATURE_FLAGS: This u32 attribute contains flags from
|
|
|
+ * &enum nl80211_feature_flags and is advertised in wiphy information.
|
|
|
+ *
|
|
|
* @NL80211_ATTR_MAX: highest attribute number currently defined
|
|
|
* @__NL80211_ATTR_AFTER_LAST: internal use
|
|
|
*/
|
|
@@ -1388,6 +1393,8 @@ enum nl80211_attrs {
|
|
|
|
|
|
NL80211_ATTR_DONT_WAIT_FOR_ACK,
|
|
|
|
|
|
+ NL80211_ATTR_FEATURE_FLAGS,
|
|
|
+
|
|
|
/* add attributes here, update the policy in nl80211.c */
|
|
|
|
|
|
__NL80211_ATTR_AFTER_LAST,
|
|
@@ -1422,6 +1429,7 @@ enum nl80211_attrs {
|
|
|
#define NL80211_ATTR_AKM_SUITES NL80211_ATTR_AKM_SUITES
|
|
|
#define NL80211_ATTR_KEY NL80211_ATTR_KEY
|
|
|
#define NL80211_ATTR_KEYS NL80211_ATTR_KEYS
|
|
|
+#define NL80211_ATTR_FEATURE_FLAGS NL80211_ATTR_FEATURE_FLAGS
|
|
|
|
|
|
#define NL80211_MAX_SUPP_RATES 32
|
|
|
#define NL80211_MAX_SUPP_REG_RULES 32
|
|
@@ -2709,4 +2717,14 @@ enum nl80211_ap_sme_features {
|
|
|
};
|
|
|
*/
|
|
|
|
|
|
+/**
|
|
|
+ * enum nl80211_feature_flags - device/driver features
|
|
|
+ * @NL80211_FEATURE_SK_TX_STATUS: This driver supports reflecting back
|
|
|
+ * TX status to the socket error queue when requested with the
|
|
|
+ * socket option.
|
|
|
+ */
|
|
|
+enum nl80211_feature_flags {
|
|
|
+ NL80211_FEATURE_SK_TX_STATUS = 1 << 0,
|
|
|
+};
|
|
|
+
|
|
|
#endif /* __LINUX_NL80211_H */
|