// dot11wificxtypes.h
typedef enum _WDI_WNM_ACTION {
WDI_WNM_ACTION_EVENT_REQUEST = 0,
WDI_WNM_ACTION_EVENT_RESPONSE = 1,
WDI_WNM_ACTION_DIAGNOSTIC_REQUEST = 2,
WDI_WNM_ACTION_DIAGNOSTIC_RESPONSE = 3,
WDI_WNM_ACTION_LOCATION_CONFIGURATION_REQUEST = 4,
WDI_WNM_ACTION_LOCATION_CONFIGURATION_RESPONSE = 5,
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_QUERY = 6,
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_REQUEST = 7,
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_RESPONSE = 8
} WDI_WNM_ACTION;
View the official Windows Driver Kit DDI reference// wditypes.h
typedef enum _WDI_WNM_ACTION {
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_QUERY,
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_REQUEST,
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_RESPONSE
} WDI_WNM_ACTION;
View the official Windows Driver Kit DDI referenceNo description available.
[!IMPORTANT] This topic is part of the WiFiCx driver model. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The previous Wi-Fi driver model WDI is in maintenance mode and will only receive high priority fixes.
The WDI_WNM_ACTION enumeration defines the message type for 802.11v BSS Transition Management action frames.
WDI_WNM_ACTION_EVENT_REQUEST:0The message is an event request frame. This is sent by the AP to the client.
WDI_WNM_ACTION_EVENT_RESPONSE:1The message is an event response frame. This is a response to the above request frame from the AP.
WDI_WNM_ACTION_DIAGNOSTIC_REQUEST:2The message is a diagnostic request frame. This is sent by the AP to the client.
WDI_WNM_ACTION_DIAGNOSTIC_RESPONSE:3The message is a diagnostic response frame. This is a response to the above request frame from the AP.
WDI_WNM_ACTION_LOCATION_CONFIGURATION_REQUEST:4The message is a location configuration request frame. This is sent by the AP to the client.
WDI_WNM_ACTION_LOCATION_CONFIGURATION_RESPONSE:5The message is a location configuration response frame. This is a response to the above request frame from the AP.
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_QUERY:6The message is a BSS Transition Management query frame.
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_REQUEST:7The message is a BSS Transition Management request frame. This is sent by the AP to the client.
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_RESPONSE:8The message is a BSS Transition Management response frame. This is a response to the above request frame from the AP.
[!IMPORTANT] This topic is part of the WDI driver model released in Windows 10. The WDI driver model is in maintenance mode and will only receive high priority fixes. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features.
The WDI_WNM_ACTION enumeration defines the message type for 802.11v BSS Transition Management action frames.
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_QUERYThe message is a BSS Transition Management query frame.
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_REQUESTThe message is a BSS Transition Management request frame. This is sent by the AP to the client.
WDI_WNM_ACTION_BSS_TRANSITION_MANAGEMENT_RESPONSEThe message is a BSS Transition Management response frame. This is a response to the above request frame from the AP.