// windot11.h
typedef struct _DOT11_INCOMING_ASSOC_STARTED_PARAMETERS {
NDIS_OBJECT_HEADER Header;
DOT11_MAC_ADDRESS PeerMacAddr;
} DOT11_INCOMING_ASSOC_STARTED_PARAMETERS, *PDOT11_INCOMING_ASSOC_STARTED_PARAMETERS;
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_INCOMING_ASSOC_STARTED_PARAMETERS structure specifies that the NIC has received the first valid 802.11 authentication request from a peer station on an infrastructure BSS.
HeaderThe type, revision, and size of the DOT11_INCOMING_ASSOC_STARTED_PARAMETERS structure. This member is formatted as an NDIS_OBJECT_HEADER structure.
The miniport driver must set the members of Header to the following values:
| Term | Description |
|---|---|
| Type | This member must be set to NDIS_OBJECT_TYPE_DEFAULT. |
| Revision | This member must be set to DOT11_INCOMING_ASSOC_STARTED_PARAMETERS_REVISION_1. |
| Size | This member must be set to sizeof(DOT11_INCOMING_ASSOC_STARTED_PARAMETERS). |
For more information about these members, see NDIS_OBJECT_HEADER.
PeerMacAddrThe media access control (MAC) address of the peer station that sent an 802.11 authentication request.
typedef struct _DOT11_INCOMING_ASSOC_STARTED_PARAMETERS {
NDIS_OBJECT_HEADER Header;
DOT11_MAC_ADDRESS PeerMacAddr;
} DOT11_INCOMING_ASSOC_STARTED_PARAMETERS, *PDOT11_INCOMING_ASSOC_STARTED_PARAMETERS;
The Native 802.11 miniport driver includes a DOT11_INCOMING_ASSOC_STARTED_PARAMETERS structure when the driver makes an NDIS_STATUS_DOT11_INCOMING_ASSOC_STARTED status indication.
NDIS_STATUS_DOT11_INCOMING_ASSOC_STARTED