// netadapter.h
typedef struct _NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES {
ULONG Size;
BOOLEAN NSOffload;
SIZE_T MaximumOffloadCount;
} NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES structure describes a net adapter's capabilities for IPv6 Neighbor Solicitation (NS) low power protocol offload.
SizeThe size of this structure, in bytes.
NSOffloadA boolean value that specifies if this net adapter supports IPv6 NS protocol offload.
MaximumOffloadCountThe maximum number of NS protocol offloads that the hardware supports.
Call NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES_INIT to initialize this structure, then call NetAdapterPowerOffloadSetNsCapabilities to set the net adapter's NS protocol offload capabilities. Client drivers typically call NetAdapterPowerOffloadSetNsCapabilities when starting a net adapter, but before calling NetAdapterStart.
NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES_INIT
NetAdapterPowerOffloadSetNsCapabilities