DOT11_PEER_STATISTICS 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_STATISTICS structure records statistical counters for the IEEE media access control (MAC) sublayer of a peer station 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_STATISTICS {
  ULONGLONG ullDecryptSuccessCount;
  ULONGLONG ullDecryptFailureCount;
  ULONGLONG ullTxPacketSuccessCount;
  ULONGLONG ullTxPacketFailureCount;
  ULONGLONG ullRxPacketSuccessCount;
  ULONGLONG ullRxPacketFailureCount;
} DOT11_PEER_STATISTICS, *PDOT11_PEER_STATISTICS;

Members

ullDecryptSuccessCount

The number of received encrypted packets that the peer station successfully decrypted.

ullDecryptFailureCount

The number of encrypted packets that the peer station failed to decrypt.

ullTxPacketSuccessCount

The number of MAC service data unit (MSDU) packets and MAC management protocol data unit (MMPDU) frames that the IEEE MAC sublayer of the peer station successfully transmitted.

ullTxPacketFailureCount

The number of MSDU packets and MMPDU frames that the IEEE MAC sublayer of the peer station attempted to transmit, but that failed to transmit.

ullRxPacketSuccessCount

The number of MSDU packets and MMPDU frames that the IEEE MAC sublayer of the peer station successfully received.

ullRxPacketFailureCount

The number of MSDU packets and MMPDU frames that the IEEE MAC sublayer of the peer station attempted to receive, but that failed to be received.

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_OBJECT_HEADER