WDI_EXEMPTION_ACTION_TYPE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// dot11wdi.h

typedef enum _WDI_EXEMPTION_ACTION_TYPE {
  WDI_EXEMPT_NO_EXEMPTION,
  WDI_EXEMPT_ALWAYS,
  WDI_EXEMPT_ON_KEY_MAPPING_KEY_UNAVAILABLE
} WDI_EXEMPTION_ACTION_TYPE;
View the official Windows Driver Kit DDI reference
// dot11wificxintf.h

typedef enum _WDI_EXEMPTION_ACTION_TYPE {
  WDI_EXEMPT_NO_EXEMPTION = 0,
  WDI_EXEMPT_ALWAYS = 1,
  WDI_EXEMPT_ON_KEY_MAPPING_KEY_UNAVAILABLE = 2
} WDI_EXEMPTION_ACTION_TYPE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-dot11wdi-_wdi_exemption_action_type)

_WDI_EXEMPTION_ACTION_TYPE enumeration

Description

[!IMPORTANT] This topic is part of the WDI driver model released in Windows 10. The WDI driver model is in maintenance mode and will only receive high priority fixes. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features.

The WDI_EXEMPTION_ACTION_TYPE enumeration defines the exemption types.

Constants

WDI_EXEMPT_NO_EXEMPTION

Packets are not exempt from any cipher operations performed by the port.

WDI_EXEMPT_ALWAYS

On send, packets are exempt from cipher operations and are transmitted unencrypted. On receive, the received packet is discarded if the Protected Frame subfield of the Frame Control field in the 802.11 MAC header is set to 1.

WDI_EXEMPT_ON_KEY_MAPPING_KEY_UNAVAILABLE

On send, packets are exempt from cipher operations if there is no key-mapping key for the packet's destination MAC address. On receive, the received packet is discarded if a key-mapping key for the source MAC address is available and the Protected Frame subfield of the Frame Control field in the 802.11 MAC header is set to 0.


Windows Driver Kit DDI reference (ne-dot11wificxintf-wdi_exemption_action_type)

Description

[!IMPORTANT] This topic is part of the WiFiCx driver model. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The previous Wi-Fi driver model WDI is now in maintenance mode and will only receive high priority fixes.

The WDI_EXEMPTION_ACTION_TYPE enumeration defines exemption types.

Constants

WDI_EXEMPT_NO_EXEMPTION:0

Packets are not exempt from any cipher operations performed by the port.

WDI_EXEMPT_ALWAYS:1

On send, packets are exempt from cipher operations and are transmitted unencrypted. On receive, the received packet is discarded if the Protected Frame subfield of the Frame Control field in the 802.11 MAC header is set to 1.

WDI_EXEMPT_ON_KEY_MAPPING_KEY_UNAVAILABLE:2

On send, packets are exempt from cipher operations if there is no key-mapping key for the packet's destination MAC address. On receive, the received packet is discarded if a key-mapping key for the source MAC address is available and the Protected Frame subfield of the Frame Control field in the 802.11 MAC header is set to zero.

Remarks

The WDI_EXEMPTION_ACTION_TYPE enum is a value in the WDI_TLV_PRIVACY_EXEMPTION_ENTRY TLV.

See also

WDI_TLV_PRIVACY_EXEMPTION_ENTRY