DOT11_INCOMING_ASSOC_STARTED_PARAMETERS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-windot11-_dot11_incoming_assoc_started_parameters)

_DOT11_INCOMING_ASSOC_STARTED_PARAMETERS structure

Description

[!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.

Members

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.

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;

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.

See also

NDIS_STATUS_DOT11_INCOMING_ASSOC_STARTED

NDIS_OBJECT_HEADER