mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 16:58:41 -05:00
Synchronize with wireless-testing.git include/uapi/linux/nl80211.h
Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
962b8b36e6
commit
f8a5fd4243
@ -27,6 +27,8 @@
|
|||||||
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
|
#define NL80211_GENL_NAME "nl80211"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* DOC: Station handling
|
* DOC: Station handling
|
||||||
*
|
*
|
||||||
@ -1429,6 +1431,11 @@ enum nl80211_commands {
|
|||||||
* @NL80211_ATTR_MAX_CRIT_PROT_DURATION: duration in milliseconds in which
|
* @NL80211_ATTR_MAX_CRIT_PROT_DURATION: duration in milliseconds in which
|
||||||
* the connection should have increased reliability (u16).
|
* the connection should have increased reliability (u16).
|
||||||
*
|
*
|
||||||
|
* @NL80211_ATTR_PEER_AID: Association ID for the peer TDLS station (u16).
|
||||||
|
* This is similar to @NL80211_ATTR_STA_AID but with a difference of being
|
||||||
|
* allowed to be used with the first @NL80211_CMD_SET_STATION command to
|
||||||
|
* update a TDLS peer STA entry.
|
||||||
|
*
|
||||||
* @NL80211_ATTR_MAX: highest attribute number currently defined
|
* @NL80211_ATTR_MAX: highest attribute number currently defined
|
||||||
* @__NL80211_ATTR_AFTER_LAST: internal use
|
* @__NL80211_ATTR_AFTER_LAST: internal use
|
||||||
*/
|
*/
|
||||||
@ -1727,6 +1734,8 @@ enum nl80211_attrs {
|
|||||||
NL80211_ATTR_CRIT_PROT_ID,
|
NL80211_ATTR_CRIT_PROT_ID,
|
||||||
NL80211_ATTR_MAX_CRIT_PROT_DURATION,
|
NL80211_ATTR_MAX_CRIT_PROT_DURATION,
|
||||||
|
|
||||||
|
NL80211_ATTR_PEER_AID,
|
||||||
|
|
||||||
/* add attributes here, update the policy in nl80211.c */
|
/* add attributes here, update the policy in nl80211.c */
|
||||||
|
|
||||||
__NL80211_ATTR_AFTER_LAST,
|
__NL80211_ATTR_AFTER_LAST,
|
||||||
@ -1991,6 +2000,10 @@ enum nl80211_sta_bss_param {
|
|||||||
* @NL80211_STA_INFO_PEER_PM: peer mesh STA link-specific power mode
|
* @NL80211_STA_INFO_PEER_PM: peer mesh STA link-specific power mode
|
||||||
* @NL80211_STA_INFO_NONPEER_PM: neighbor mesh STA power save mode towards
|
* @NL80211_STA_INFO_NONPEER_PM: neighbor mesh STA power save mode towards
|
||||||
* non-peer STA
|
* non-peer STA
|
||||||
|
* @NL80211_STA_INFO_CHAIN_SIGNAL: per-chain signal strength of last PPDU
|
||||||
|
* Contains a nested array of signal strength attributes (u8, dBm)
|
||||||
|
* @NL80211_STA_INFO_CHAIN_SIGNAL_AVG: per-chain signal strength average
|
||||||
|
* Same format as NL80211_STA_INFO_CHAIN_SIGNAL.
|
||||||
* @__NL80211_STA_INFO_AFTER_LAST: internal
|
* @__NL80211_STA_INFO_AFTER_LAST: internal
|
||||||
* @NL80211_STA_INFO_MAX: highest possible station info attribute
|
* @NL80211_STA_INFO_MAX: highest possible station info attribute
|
||||||
*/
|
*/
|
||||||
@ -2020,6 +2033,8 @@ enum nl80211_sta_info {
|
|||||||
NL80211_STA_INFO_NONPEER_PM,
|
NL80211_STA_INFO_NONPEER_PM,
|
||||||
NL80211_STA_INFO_RX_BYTES64,
|
NL80211_STA_INFO_RX_BYTES64,
|
||||||
NL80211_STA_INFO_TX_BYTES64,
|
NL80211_STA_INFO_TX_BYTES64,
|
||||||
|
NL80211_STA_INFO_CHAIN_SIGNAL,
|
||||||
|
NL80211_STA_INFO_CHAIN_SIGNAL_AVG,
|
||||||
|
|
||||||
/* keep last */
|
/* keep last */
|
||||||
__NL80211_STA_INFO_AFTER_LAST,
|
__NL80211_STA_INFO_AFTER_LAST,
|
||||||
@ -2637,6 +2652,10 @@ enum nl80211_meshconf_params {
|
|||||||
* @NL80211_MESH_SETUP_USERSPACE_MPM: Enable this option if userspace will
|
* @NL80211_MESH_SETUP_USERSPACE_MPM: Enable this option if userspace will
|
||||||
* implement an MPM which handles peer allocation and state.
|
* implement an MPM which handles peer allocation and state.
|
||||||
*
|
*
|
||||||
|
* @NL80211_MESH_SETUP_AUTH_PROTOCOL: Inform the kernel of the authentication
|
||||||
|
* method (u8, as defined in IEEE 8.4.2.100.6, e.g. 0x1 for SAE).
|
||||||
|
* Default is no authentication method required.
|
||||||
|
*
|
||||||
* @NL80211_MESH_SETUP_ATTR_MAX: highest possible mesh setup attribute number
|
* @NL80211_MESH_SETUP_ATTR_MAX: highest possible mesh setup attribute number
|
||||||
*
|
*
|
||||||
* @__NL80211_MESH_SETUP_ATTR_AFTER_LAST: Internal use
|
* @__NL80211_MESH_SETUP_ATTR_AFTER_LAST: Internal use
|
||||||
@ -2650,6 +2669,7 @@ enum nl80211_mesh_setup_params {
|
|||||||
NL80211_MESH_SETUP_USERSPACE_AMPE,
|
NL80211_MESH_SETUP_USERSPACE_AMPE,
|
||||||
NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC,
|
NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC,
|
||||||
NL80211_MESH_SETUP_USERSPACE_MPM,
|
NL80211_MESH_SETUP_USERSPACE_MPM,
|
||||||
|
NL80211_MESH_SETUP_AUTH_PROTOCOL,
|
||||||
|
|
||||||
/* keep last */
|
/* keep last */
|
||||||
__NL80211_MESH_SETUP_ATTR_AFTER_LAST,
|
__NL80211_MESH_SETUP_ATTR_AFTER_LAST,
|
||||||
|
Loading…
Reference in New Issue
Block a user