DOT11_SECURITY_PACKET_HEADER structure (wlclient.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_SECURITY_PACKET_HEADER structure specifies security data used in a network packet header.

Syntax

typedef struct _DOT11_SECURITY_PACKET_HEADER {
  DOT11_MAC_ADDRESS PeerMac;
  USHORT            usEtherType;
  UCHAR             Data[1];
} DOT11_SECURITY_PACKET_HEADER, *PDOT11_SECURITY_PACKET_HEADER;

Members

PeerMac

A DOT11_MAC_ADDRESS type that defines the MAC address of the peer node.

usEtherType

The value of the IEEE EtherType in big-endian byte order.

Data[1]

The contents of the security packet, excluding the 801.11 MAC header.

Requirements

Requirement Value
Minimum supported client Available in Windows Vista and later versions of the Windows operating systems.
Header wlclient.h (include Wlanihv.h)

See also

DOT11_MAC_ADDRESS