// windot11.h
typedef struct _DOT11_OFFLOAD_NETWORK {
DOT11_SSID Ssid;
DOT11_CIPHER_ALGORITHM UnicastCipher;
DOT11_AUTH_ALGORITHM AuthAlgo;
DOT11_CHANNEL_HINT Dot11ChannelHints[DOT11_MAX_CHANNEL_HINTS];
} DOT11_OFFLOAD_NETWORK, *PDOT11_OFFLOAD_NETWORK;
View the official Windows Driver Kit DDI referenceNo description available.
[!Important] WiFiCx is the new Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The WDI driver model is now in maintenance mode and will only receive high priority fixes.
The DOT11_OFFLOAD_NETWORK structure describes a network list offload.
SsidSSID interface.
UnicastCipherCipher algorithm for data encryption and decryption.
AuthAlgoWireless LAN authentication algorithm.
Dot11ChannelHintsArray of hints listing 802.11 PHY and media types and channels.
typedef struct _DOT11_OFFLOAD_NETWORK {
DOT11_SSID Ssid;
DOT11_CIPHER_ALGORITHM UnicastCipher;
DOT11_AUTH_ALGORITHM AuthAlgo;
DOT11_CHANNEL_HINT Dot11ChannelHints[DOT11_MAX_CHANNEL_HINTS];
} DOT11_OFFLOAD_NETWORK, *PDOT11_OFFLOAD_NETWORK;