DOT11_PEER_INFO_LIST 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_PEER_INFO_LIST structure specifies a list of DOT11_PEER_INFO structures that specify information about all peer stations within an independent basic service set (IBSS) network.

Note  IBSS (Ad hoc) and SoftAP are deprecated. Starting with Windows 8.1 and Windows Server 2012 R2, use Wi-Fi Direct.

Syntax

typedef struct _DOT11_PEER_INFO_LIST {
  NDIS_OBJECT_HEADER Header;
  ULONG              uNumOfEntries;
  ULONG              uTotalNumOfEntries;
  DOT11_PEER_INFO    PeerInfo[1];
} DOT11_PEER_INFO_LIST, *PDOT11_PEER_INFO_LIST;

Members

Header

The type, revision, and size of the DOT11_PEER_INFO_LIST 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

This member must be set to DOT11_PEER_INFO_LIST_REVISION_1.

Size

This member must be set to sizeof(DOT11_PEER_INFO_LIST).

For more information about these members, see NDIS_OBJECT_HEADER.

uNumOfEntries

The number of entries in the PeerInfo array.

uTotalNumOfEntries

The maximum number of entries that the PeerInfo array can contain.

PeerInfo[1]

An array that specifies the list of DOT11_PEER_INFO structures that specify information on all peer stations within an IBSS network. Each station is represented by a DOT11_PEER_INFO structure.

Remarks

This structure is used with OID_DOT11_ENUM_PEER_INFO.

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

OID_DOT11_ENUM_PEER_INFO

DOT11_PEER_INFO

NDIS_OBJECT_HEADER