// dot11wificxtypes.h
typedef enum _WDI_SAE_REQUEST_TYPE {
WDI_SAE_REQUEST_TYPE_COMMIT_PARAMS = 0,
WDI_SAE_REQUEST_TYPE_CONFIRM_PARAMS = 1,
WDI_SAE_REQUEST_TYPE_FAILURE = 2,
WDI_SAE_REQUEST_TYPE_SUCCESS = 3,
WDI_SAE_REQUEST_TYPE_COMMIT_H2E_PARAMS = 4
} WDI_SAE_REQUEST_TYPE;
View the official Windows Driver Kit DDI reference// wditypes.h
typedef enum _WDI_SAE_REQUEST_TYPE {
WDI_SAE_REQUEST_TYPE_COMMIT_REQUEST = 0,
WDI_SAE_REQUEST_TYPE_CONFIRM_REQUEST = 1,
WDI_SAE_REQUEST_TYPE_FAILURE = 2,
WDI_SAE_REQUEST_TYPE_SUCCESS = 3,
WDI_SAE_REQUEST_TYPE_COMMIT_REQUEST_H2E = 4
} WDI_SAE_REQUEST_TYPE;
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_SAE_REQUEST_TYPE enumeration defines the type of Simultaneous Authentication of Equals (SAE) request frame to send to the BSSID.
WDI_SAE_REQUEST_TYPE_COMMIT_PARAMS:0Send a Commit request. SAECommitRequest will be included.
WDI_SAE_REQUEST_TYPE_CONFIRM_PARAMS:1Send a Confirm request. SAEConfirmRequest will be included.
WDI_SAE_REQUEST_TYPE_FAILURE:2Request SAE authentication parameters failed. SAEStatus will be included.
WDI_SAE_REQUEST_TYPE_SUCCESS:3Request SAE authentication parameters succeeded.
WDI_SAE_REQUEST_TYPE_COMMIT_H2E_PARAMS:4Send a Commit Request using H2E. When Anti-Clogging token is specified, it will be encoded as Anti-Clogging Element instead of a field.
This enumeration is a value in the OID_WDI_SET_SAE_AUTH_PARAMS command.
[!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_SAE_REQUEST_TYPE enumeration defines the type of Simultaneous Authentication of Equals (SAE) request frame to send to the BSSID.
WDI_SAE_REQUEST_TYPE_COMMIT_REQUEST:0Send a Commit request. SAECommitRequest will be included.
WDI_SAE_REQUEST_TYPE_CONFIRM_REQUEST:1Send a Confirm request. SAEConfirmRequest will be included.
WDI_SAE_REQUEST_TYPE_FAILURE:2Request SAE authentication parameters failed. SAEStatus will be included.
WDI_SAE_REQUEST_TYPE_SUCCESS:3Request SAE authentication parameters succeeded.
WDI_SAE_REQUEST_TYPE_COMMIT_REQUEST_H2E:4Send a Commit Request using H2E. When Anti-Clogging token is specified, it will be encoded as Anti-Clogging Element instead of a field.
This enumeration is a value in the OID_WDI_SET_SAE_AUTH_PARAMS command.