// dot11wificxtypes.h
typedef enum _WDI_FTM_RESPONSE_STATUS {
WDI_FTM_RESPONSE_STATUS_SUCCESS = 0,
WDI_FTM_RESPONSE_STATUS_UNREACHABLE = 1,
WDI_FTM_RESPONSE_STATUS_REJECTED = 2,
WDI_FTM_RESPONSE_STATUS_INCAPABLE = 3,
WDI_FTM_RESPONSE_STATUS_TIMEOUT = 4,
WDI_FTM_RESPONSE_STATUS_NOT_ATTEMPTED = 5,
WDI_FTM_RESPONSE_STATUS_ABORTED = 6,
WDI_FTM_RESPONSE_STATUS_FAILED = 7
} WDI_FTM_RESPONSE_STATUS;
View the official Windows Driver Kit DDI reference// wditypes.h
typedef enum _WDI_FTM_RESPONSE_STATUS {
WDI_FTM_RESPONSE_STATUS_SUCCESS,
WDI_FTM_RESPONSE_STATUS_UNREACHABLE,
WDI_FTM_RESPONSE_STATUS_REJECTED,
WDI_FTM_RESPONSE_STATUS_INCAPABLE,
WDI_FTM_RESPONSE_STATUS_TIMEOUT,
WDI_FTM_RESPONSE_STATUS_NOT_ATTEMPTED,
WDI_FTM_RESPONSE_STATUS_ABORTED,
WDI_FTM_RESPONSE_STATUS_FAILED
} WDI_FTM_RESPONSE_STATUS;
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_FTM_RESPONSE_STATUS enumeration defines the response status for a Fine Timing Measurement (FTM) request.
WDI_FTM_RESPONSE_STATUS_SUCCESS:0The FTM was a success.
WDI_FTM_RESPONSE_STATUS_UNREACHABLE:1No ACK was received for the FTM request from the target, or no first FTM frame was received afterwards. The application will be advised to first trigger a new scan before retrying.
WDI_FTM_RESPONSE_STATUS_REJECTED:2The status indication field from Table 9-256 of the 802-11-2016 standard was set to 3. A RetryValue should be provided and the application will be advised to retry only after that time has passed.
WDI_FTM_RESPONSE_STATUS_INCAPABLE:3The status indication field from Table 9-256 of the 802-11-2016 standard was set to 2. The application will be advised not to retry.
WDI_FTM_RESPONSE_STATUS_TIMEOUT:4The FTM session was started but it did not complete before the timeout expired. A retry to this STA might work.
WDI_FTM_RESPONSE_STATUS_NOT_ATTEMPTED:5The FTM session was not initiated. It is highly likely that a retry to this STA will work.
WDI_FTM_RESPONSE_STATUS_ABORTED:6The FTM procedure did not complete because the task was aborted. It is likely that a retry to this STA will work.
WDI_FTM_RESPONSE_STATUS_FAILED:7The FTM procedure failed with any other failure besides the preceding failure responses. A retry to this STA might or might not work.
This enumeration is a value in the WDI_TLV_FTM_RESPONSE TLV.
NDIS_STATUS_WDI_INDICATION_REQUEST_FTM_COMPLETE
[!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_FTM_RESPONSE_STATUS defines the response status for a Fine Timing Measurement (FTM) request.
WDI_FTM_RESPONSE_STATUS_SUCCESSThe FTM was a success.
WDI_FTM_RESPONSE_STATUS_UNREACHABLENo ACK was received for the FTM request from the target, or no first FTM frame was received afterwards. The application will be advised to first trigger a new scan before retrying.
WDI_FTM_RESPONSE_STATUS_REJECTEDThe status indication field from Table 9-256 of the 802-11-2016 standard was set to 3. A RetryValue should be provided and the application will be advised to retry only after that time has passed.
WDI_FTM_RESPONSE_STATUS_INCAPABLEThe status indication field from Table 9-256 of the 802-11-2016 standard was set to 2. The application will be advised not to retry.
WDI_FTM_RESPONSE_STATUS_TIMEOUTThe FTM session was started but it did not complete before the timeout expired. A retry to this STA might work.
WDI_FTM_RESPONSE_STATUS_NOT_ATTEMPTEDThe FTM session was not initiated. It is highly likely that a retry to this STA will work.
WDI_FTM_RESPONSE_STATUS_ABORTEDThe FTM procedure did not complete because the task was aborted. It is likely that a retry to this STA will work.
WDI_FTM_RESPONSE_STATUS_FAILEDThe FTM procedure failed with any other failure besides the preceding failure responses. A retry to this STA might or might not work.
This enumeration is a value in the WDI_TLV_FTM_RESPONSE TLV.
NDIS_STATUS_WDI_INDICATION_REQUEST_FTM_COMPLETE