// dot11wificxtypes.h
typedef enum _WDI_SCAN_TYPE {
WDI_SCAN_TYPE_ACTIVE_ONLY = 1,
WDI_SCAN_TYPE_PASSIVE_ONLY = 2,
WDI_SCAN_TYPE_AUTO = 3,
WDI_SCAN_TYPE_MAX_VALUE = 0xFFFF
} WDI_SCAN_TYPE;
View the official Windows Driver Kit DDI reference// wditypes.h
typedef enum _WDI_SCAN_TYPE {
WDI_SCAN_TYPE_ACTIVE_ONLY,
WDI_SCAN_TYPE_PASSIVE_ONLY,
WDI_SCAN_TYPE_AUTO,
WDI_SCAN_TYPE_MAX_VALUE
} WDI_SCAN_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_SCAN_TYPE enumeration defines scan types.
WDI_SCAN_TYPE_ACTIVE_ONLY:1The port should transmit a probe request on the channels that it scans. Even for active scans, the port must follow regulatory restrictions on the channel and must not scan on channels that would need a passive scan.
WDI_SCAN_TYPE_PASSIVE_ONLY:2The port should not transmit a probe request on the channels that it scans.
WDI_SCAN_TYPE_AUTO:3The port can perform an active or passive can or can use a combination of both scan types. It should prefer using Active scans when possible. This is the default scan type setting.
WDI_SCAN_TYPE_MAX_VALUE:0xFFFFThe maximum value for this type.
The WDI_SCAN_TYPE enum is a value in the WDI_TLV_SCAN_MODE and WDI_TLV_ADAPTER_NLO_SCAN_MODE TLVs.
[!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_SCAN_TYPE enumeration defines the scan types.
WDI_SCAN_TYPE_ACTIVE_ONLYThe port should transmit a probe request on the channels that it scans. Even for active scans, the port must follow regulatory restrictions on the channel and must not scan on channels that would need a passive scan.
WDI_SCAN_TYPE_PASSIVE_ONLYThe port should not transmit a probe request on the channels that it scans.
WDI_SCAN_TYPE_AUTOThe port can perform an active or passive can or can use a combination of both scan types. It should prefer using Active scans when possible. This is the default scan type setting.
WDI_SCAN_TYPE_MAX_VALUEThe maximum value for this type.