// wlclient.h
typedef struct _DOT11_SECURITY_PACKET_HEADER {
DOT11_MAC_ADDRESS PeerMac;
USHORT usEtherType;
UCHAR Data[1];
} DOT11_SECURITY_PACKET_HEADER, *PDOT11_SECURITY_PACKET_HEADER;
View the official Windows Driver Kit DDI referenceNo description available.
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.
PeerMacA DOT11_MAC_ADDRESS type that defines the MAC address of the peer node.
usEtherTypeThe value of the IEEE EtherType in big-endian byte order.
DataThe contents of the security packet, excluding the 801.11 MAC header.
typedef struct _DOT11_SECURITY_PACKET_HEADER {
DOT11_MAC_ADDRESS PeerMac;
USHORT usEtherType;
UCHAR Data[1];
} DOT11_SECURITY_PACKET_HEADER, *PDOT11_SECURITY_PACKET_HEADER;