DOT11_INCOMING_ASSOC_STARTED_PARAMETERS structure (windot11.h)

Important  The Native 802.11 Wireless LAN interface is deprecated in Windows 10 and later. Please use the WLAN Device Driver Interface (WDI) instead. For more information about WDI, see WLAN Universal Windows driver model.
 
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.

Syntax

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;

Members

Header

The 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.

PeerMacAddr

The media access control (MAC) address of the peer station that sent an 802.11 authentication request.

Remarks

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.

Requirements

Requirement Value
Minimum supported client Available in Windows 7 and later versions of the Windows operating systems.
Header windot11.h (include Ndis.h)

See also

NDIS_STATUS_DOT11_INCOMING_ASSOC_STARTED

NDIS_OBJECT_HEADER