// ntddndis.h
typedef enum _NDIS_RFC6877_464XLAT_OFFLOAD_OPTIONS {
NDIS_RFC6877_464XLAT_OFFLOAD_NOT_SUPPORTED,
NDIS_RFC6877_464XLAT_OFFLOAD_DISABLED,
NDIS_RFC6877_464XLAT_OFFLOAD_ENABLED,
NDIS_RFC6877_464XLAT_OFFLOAD_ON_DEMAND
} NDIS_RFC6877_464XLAT_OFFLOAD_OPTIONS;
View the official Windows Driver Kit DDI reference
No description available.
The NDIS_RFC6877_464XLAT_OFFLOAD_OPTIONS enumeration describes a miniport driver's 464XLAT hardware offload capabilities.
NDIS_RFC6877_464XLAT_OFFLOAD_NOT_SUPPORTED
The driver is incapable of 464XLAT hardware offload.
NDIS_RFC6877_464XLAT_OFFLOAD_DISABLED
The driver is capable of 464XLAT hardware offload, but it is disabled.
NDIS_RFC6877_464XLAT_OFFLOAD_ENABLED
The driver is capable of 464XLAT hardware offload, and it is enabled at all times.
NDIS_RFC6877_464XLAT_OFFLOAD_ON_DEMAND
The driver is capable of 464XLAT hardware offload, and it is only enabled on-demand.