Share via


DOT11_DISASSOCIATION_PARAMETERS (Compact 2013)

3/26/2014

This structure specifies the results of the disassociation operation that is performed by the 802.11 station with either an access point (AP) or peer station. The Native 802.11 miniport driver includes a DOT11_ASSOCIATION_DISASSOCIATION_PARAMETERS structure when the driver makes an NDIS_STATUS_DOT11_DISASSOCIATION indication.

Syntax

typedef struct DOT11_DISASSOCIATION_PARAMETERS {
  NDIS_OBJECT_HEADER  Header;
  DOT11_MAC_ADDRESS  MacAddr;
  DOT11_ASSOC_STATUS  uReason;
  ULONG  uIHVDataOffset;
  ULONG  uIHVDataSize;
} DOT11_DISASSOCIATION_PARAMETERS, *PDOT11_DISASSOCIATION_PARAMETERS;

Members

  • Header
    The type, revision, and size of the DOT11_DISASSOCIATION_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:

    Type

    This member must be set to NDIS_OBJECT_TYPE_DEFAULT

    Revision

    DOT11_DISASSOCIATION_PARAMETERS_REVISION_1

    Size

    This member must be set to sizeof(DOT11_DISASSOCIATION_PARAMETERS)

  • MacAddr
    The media access control (MAC) address of the AP or peer station from which the 802.11 station has disassociated.

    If the miniport driver sets MacAddr to the wildcard value of 0xFFFFFFFFFFFF, the 802.11 station has disassociated from the AP or all peer stations.

  • uIHVDataOffset
    The offset of a block of data in a proprietary format that is defined by the IHV. The IHV can use this data block for any purposes that are related to the NDIS_STATUS_DOT11_DISASSOCIATION indication.

    This offset is relative to the start of the buffer, which contains the DOT11_DISASSOCIATION_PARAMETERS structure.

    If the miniport driver is not returning IHV data in the NDIS_STATUS_DOT11_DISASSOCIATION indication, it must set uIHVDataOffset to zero.

  • uIHVDataSize
    The length of the block of data that is used by the IHV for the NDIS_STATUS_DOT11_DISASSOCIATION indication. If the miniport driver is not returning IHV data in this indication, it must set uIHVDataSize to zero.

Requirements

Header

windot11.h

See Also

Reference

Native 802.11 Data Types
NDIS_STATUS_DOT11_DISASSOCIATION
NDIS_OBJECT_HEADER
DOT11_ASSOC_STATUS
Native 802.11 Wireless LAN Reference