DOT11_SECURITY_PACKET_HEADER - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wlclient-_dot11_security_packet_header)

_DOT11_SECURITY_PACKET_HEADER structure

Description

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.

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

The contents of the security packet, excluding the 801.11 MAC 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;

See also

DOT11_MAC_ADDRESS