// netadapter.h
typedef struct _NET_ADAPTER_POWER_OFFLOAD_ARP_CAPABILITIES {
ULONG Size;
BOOLEAN ArpOffload;
SIZE_T MaximumOffloadCount;
} NET_ADAPTER_POWER_OFFLOAD_ARP_CAPABILITIES;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_ADAPTER_POWER_OFFLOAD_ARP_CAPABILITIES structure describes a net adapter's capabilities for IPv4 ARP low power protocol offload.
SizeThe size of this structure, in bytes.
ArpOffloadA boolean value that specifies if this net adapter supports IPv4 ARP protocol offload.
MaximumOffloadCountThe maximum number of ARP protocol offloads that the hardware supports.
Call NET_ADAPTER_POWER_OFFLOAD_ARP_CAPABILITIES_INIT to initialize this structure, then call NetAdapterPowerOffloadSetArpCapabilities to set the net adapter's ARP protocol offload capabilities. Client drivers typically call NetAdapterPowerOffloadSetArpCapabilities when starting a net adapter, but before calling NetAdapterStart.
NET_ADAPTER_POWER_OFFLOAD_ARP_CAPABILITIES_INIT
NetAdapterPowerOffloadSetArpCapabilities