DOT11_RECV_SENSITIVITY_LIST (Compact 2013)

3/26/2014

This structure defines the returned list of receive sensitivity ranges for all data rates supported on a PHY.

Syntax

typedef struct _DOT11_RECV_SENSITIVITY_LIST 
{
  union 
  {
    DOT11_PHY_TYPE  dot11PhyType;
    ULONG  uPhyId;
  };
  ULONG  uNumOfEntries;
  ULONG  uTotalNumOfEntries;
  DOT11_RECV_SENSITIVITY  dot11RecvSensitivity[1];
} DOT11_RECV_SENSITIVITY_LIST, *PDOT11_RECV_SENSITIVITY_LIST;

Members

  • dot11PhyType
    The PHY type queried for the receive sensitivity list. The PHY type is defined by the DOT11_PHY_TYPE enumeration.

    If the 802.11 station does not support the specified PHY type, the miniport driver must fail the query request by returning NDIS_STATUS_BAD_VERSION from its MiniportOidRequest function.

    Note

    The miniport driver must not use this member if it is operating in Extensible Station (ExtSTA) mode.

  • uPhyId
    The identifier (ID) of the PHY that is queried for the receive sensitivity list. The PHY ID is the index within the list of supported PHYs returned by the driver through a query of OID_DOT11_SUPPORTED_PHY_TYPES.

    If the ID is invalid, the miniport driver must fail the query request by returning NDIS_STATUS_BAD_VERSION from its MiniportOidRequest function.

    Note

    The miniport driver must use this member if it is operating in ExtSTA mode.

  • uNumOfEntries
    Number of entries in the dot11RecvSensitivity array. A zero value for this member indicates an empty receive sensitivity list.
  • uTotalNumOfEntries
    Maximum number of entries that the dot11RecvSensitivity array requires.
  • dot11RecvSensitivity
    The receive sensitivity list for the PHY that is specified by the dot11PhyType member.

    Note

    The dot11RecvSensitivity array is defined by the DOT11_RECV_SENSITIVITY structure.

Requirements

Header

windot11.h

See Also

Reference

Native 802.11 Data Types
MiniportOidRequest
OID_DOT11_SUPPORTED_PHY_TYPES
DOT11_RECV_SENSITIVITY
Native 802.11 Wireless LAN Reference

Other Resources

DOT11_PHY_TYPE