// netadapteroffload.h
void NetAdapterOffloadSetRxChecksumCapabilities(
[_In_] NETADAPTER Adapter,
[_In_] const NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES *Capabilities
);
View the official Windows Driver Kit DDI referenceNo description available.
The NetAdapterOffloadSetRxChecksumCapabilities function sets the hardware Rx checksum offload capabilities of a network adapter.
Adapter [_In_]A handle to a NETADAPTER object that the client driver obtained from a previous call to NetAdapterCreate.
Capabilities [_In_]A pointer to a driver-allocated and initialized NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES structure that describes the hardware's Rx checksum offload capabilities.
Client drivers typically call this function from within their EvtDevicePrepareHardware callback, but must call this function before calling NetAdapterStart.
NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES
NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES_INIT
EVT_NET_ADAPTER_OFFLOAD_SET_RX_CHECKSUM