// netadapteroffload.h
EVT_NET_ADAPTER_OFFLOAD_SET_TX_CHECKSUM EvtNetAdapterOffloadSetTxChecksum;
void EvtNetAdapterOffloadSetTxChecksum(
[_In_] NETADAPTER Adapter,
[_In_] NETOFFLOAD Offload
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The client driver implements the EvtNetAdapterOffloadSetTxChecksum callback function to query changes in active Tx checksum offload capabilities and update the hardware settings accordingly.
Adapter [_In_]A handle to a NETADAPTER object the client driver previously created with a call to NetAdapterCreate.
Offload [_In_]A handle to a NETOFFLOAD object that describes the adapter's offload capabilities.
Register your implementation of this callback function by setting the appropriate parameter when calling NetAdapterOffloadSetTxChecksumCapabilities.
For an example implementation of this callback, see Checksum Offload.
NET_ADAPTER_OFFLOAD_TX_CHECKSUM_CAPABILITIES
NetAdapterOffloadSetTxChecksumCapabilities