// dot11wificxtypes.h
typedef enum _WDI_BSS_SELECTION_FLAGS {
WDI_BSS_SELECTION_HOST_PREFERRED = 0x00000001,
WDI_BSS_SELECTION_RECENT_ASSOCIATION_ERROR = 0x00000002,
WDI_BSS_SELECTION_FLAGS_AP_REQUESTED_TRANSITION = 0x00000004
} WDI_BSS_SELECTION_FLAGS;
View the official Windows Driver Kit DDI reference// wditypes.h
typedef enum _WDI_BSS_SELECTION_FLAGS {
WDI_BSS_SELECTION_HOST_PREFERRED,
WDI_BSS_SELECTION_RECENT_ASSOCIATION_ERROR,
WDI_BSS_SELECTION_FLAGS_AP_REQUESTED_TRANSITION
} WDI_BSS_SELECTION_FLAGS;
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_BSS_SELECTION_FLAGS enumeration defines flags for BSS selection.
WDI_BSS_SELECTION_HOST_PREFERRED:0x00000001Set for BSS entries that the host prefers to connect to. Non-preferred BSS entries would also be provided to the port, but should only be used for connection if port performs its own BSS ranking.
WDI_BSS_SELECTION_RECENT_ASSOCIATION_ERROR:0x00000002Set for BSS entries that had recent association failures or were recently disassociated from. This flag is already accounted for by the host when setting WDI_BSS_SELECTION_HOST_PREFERRED.
WDI_BSS_SELECTION_FLAGS_AP_REQUESTED_TRANSITION:0x00000004Specifies whether this roam was requested by the AP or not (11v BSS Transition management request).
The WDI_BSS_SELECTION_FLAGS enum is a value in the WDI_TLV_BSS_SELECTION_PARAMETERS TLV.
WDI_TLV_BSS_SELECTION_PARAMETERS
[!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_BSS_SELECTION_FLAGS enumeration defines flags for BSS selection.
WDI_BSS_SELECTION_HOST_PREFERREDSet for BSS entries that the host prefers to connect to. Non-preferred BSS entries would also be provided to the port, but should only be used for connection if port performs its own BSS ranking.
WDI_BSS_SELECTION_RECENT_ASSOCIATION_ERRORSet for BSS entries that had recent association failures or were recently disassociated from. This flag is already accounted for by the host when setting WDI_BSS_SELECTION_HOST_PREFERRED.
WDI_BSS_SELECTION_FLAGS_AP_REQUESTED_TRANSITIONSpecifies whether this roam was requested by the AP or not (11v BSS Transition management request).