|
@@ -227,7 +227,11 @@
|
|
|
* the interface identified by %NL80211_ATTR_IFINDEX.
|
|
|
* @NL80211_CMD_DEL_STATION: Remove a station identified by %NL80211_ATTR_MAC
|
|
|
* or, if no MAC address given, all stations, on the interface identified
|
|
|
- * by %NL80211_ATTR_IFINDEX.
|
|
|
+ * by %NL80211_ATTR_IFINDEX. %NL80211_ATTR_MGMT_SUBTYPE and
|
|
|
+ * %NL80211_ATTR_REASON_CODE can optionally be used to specify which type
|
|
|
+ * of disconnection indication should be sent to the station
|
|
|
+ * (Deauthentication or Disassociation frame and reason code for that
|
|
|
+ * frame).
|
|
|
*
|
|
|
* @NL80211_CMD_GET_MPATH: Get mesh path attributes for mesh path to
|
|
|
* destination %NL80211_ATTR_MAC on the interface identified by
|
|
@@ -738,6 +742,15 @@
|
|
|
* before removing a station entry entirely, or before disassociating
|
|
|
* or similar, cleanup will happen in the driver/device in this case.
|
|
|
*
|
|
|
+ * @NL80211_CMD_GET_MPP: Get mesh path attributes for mesh proxy path to
|
|
|
+ * destination %NL80211_ATTR_MAC on the interface identified by
|
|
|
+ * %NL80211_ATTR_IFINDEX.
|
|
|
+ *
|
|
|
+ * @NL80211_CMD_JOIN_OCB: Join the OCB network. The center frequency and
|
|
|
+ * bandwidth of a channel must be given.
|
|
|
+ * @NL80211_CMD_LEAVE_OCB: Leave the OCB network -- no special arguments, the
|
|
|
+ * network is determined by the network interface.
|
|
|
+ *
|
|
|
* @NL80211_CMD_MAX: highest used command number
|
|
|
* @__NL80211_CMD_AFTER_LAST: internal use
|
|
|
*/
|
|
@@ -912,6 +925,11 @@ enum nl80211_commands {
|
|
|
NL80211_CMD_ADD_TX_TS,
|
|
|
NL80211_CMD_DEL_TX_TS,
|
|
|
|
|
|
+ NL80211_CMD_GET_MPP,
|
|
|
+
|
|
|
+ NL80211_CMD_JOIN_OCB,
|
|
|
+ NL80211_CMD_LEAVE_OCB,
|
|
|
+
|
|
|
/* add new commands above here */
|
|
|
|
|
|
/* used to define NL80211_CMD_MAX below */
|
|
@@ -2064,6 +2082,8 @@ enum nl80211_attrs {
|
|
|
* and therefore can't be created in the normal ways, use the
|
|
|
* %NL80211_CMD_START_P2P_DEVICE and %NL80211_CMD_STOP_P2P_DEVICE
|
|
|
* commands to create and destroy one
|
|
|
+ * @NL80211_IF_TYPE_OCB: Outside Context of a BSS
|
|
|
+ * This mode corresponds to the MIB variable dot11OCBActivated=true
|
|
|
* @NL80211_IFTYPE_MAX: highest interface type number currently defined
|
|
|
* @NUM_NL80211_IFTYPES: number of defined interface types
|
|
|
*
|
|
@@ -2083,6 +2103,7 @@ enum nl80211_iftype {
|
|
|
NL80211_IFTYPE_P2P_CLIENT,
|
|
|
NL80211_IFTYPE_P2P_GO,
|
|
|
NL80211_IFTYPE_P2P_DEVICE,
|
|
|
+ NL80211_IFTYPE_OCB,
|
|
|
|
|
|
/* keep last */
|
|
|
NUM_NL80211_IFTYPES,
|
|
@@ -4042,6 +4063,13 @@ enum nl80211_ap_sme_features {
|
|
|
* multiplexing powersave, ie. can turn off all but one chain
|
|
|
* and then wake the rest up as required after, for example,
|
|
|
* rts/cts handshake.
|
|
|
+ * @NL80211_FEATURE_SUPPORTS_WMM_ADMISSION: the device supports setting up WMM
|
|
|
+ * TSPEC sessions (TID aka TSID 0-7) with the %NL80211_CMD_ADD_TX_TS
|
|
|
+ * command. Standard IEEE 802.11 TSPEC setup is not yet supported, it
|
|
|
+ * needs to be able to handle Block-Ack agreements and other things.
|
|
|
+ * @NL80211_FEATURE_MAC_ON_CREATE: Device supports configuring
|
|
|
+ * the vif's MAC address upon creation.
|
|
|
+ * See 'macaddr' field in the vif_params (cfg80211.h).
|
|
|
*/
|
|
|
enum nl80211_feature_flags {
|
|
|
NL80211_FEATURE_SK_TX_STATUS = 1 << 0,
|
|
@@ -4070,6 +4098,8 @@ enum nl80211_feature_flags {
|
|
|
NL80211_FEATURE_ACKTO_ESTIMATION = 1 << 23,
|
|
|
NL80211_FEATURE_STATIC_SMPS = 1 << 24,
|
|
|
NL80211_FEATURE_DYNAMIC_SMPS = 1 << 25,
|
|
|
+ NL80211_FEATURE_SUPPORTS_WMM_ADMISSION = 1 << 26,
|
|
|
+ NL80211_FEATURE_MAC_ON_CREATE = 1 << 27,
|
|
|
};
|
|
|
|
|
|
/**
|