EVT_NET_ADAPTER_OFFLOAD_SET_RX_CHECKSUM - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// netadapteroffload.h

EVT_NET_ADAPTER_OFFLOAD_SET_RX_CHECKSUM EvtNetAdapterOffloadSetRxChecksum;

void EvtNetAdapterOffloadSetRxChecksum(
  [_In_] NETADAPTER Adapter,
  [_In_] NETOFFLOAD Offload
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-netadapteroffload-evt_net_adapter_offload_set_rx_checksum)

EVT_NET_ADAPTER_OFFLOAD_SET_RX_CHECKSUM callback function

Description

The client driver implements the EvtNetAdapterOffloadSetRxChecksum callback function to query changes in active Rx checksum offload capabilities and update the hardware accordingly.

Parameters

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.

Remarks

Register your implementation of this callback function by setting the appropriate parameter when calling NetAdapterOffloadSetRxChecksumCapabilities.

For an example implementation of this callback, Checksum Offload.

See also

Checksum Offload

NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES

NetAdapterOffloadSetRxChecksumCapabilities