NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES - NtDoc

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

typedef struct _NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES {
  ULONG                                   Size;
  PFN_NET_ADAPTER_OFFLOAD_SET_RX_CHECKSUM EvtAdapterOffloadSetRxChecksum;
} NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-netadapteroffload-_net_adapter_offload_rx_checksum_capabilities)

_NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES structure

Description

The NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES structure describes a network interface card (NIC)'s Rx checksum offload capabilities.

Members

Size

The size of this structure in bytes.

EvtAdapterOffloadSetRxChecksum

A pointer to the client driver's implementation of the EVT_NET_ADAPTER_OFFLOAD_SET_RX_CHECKSUM callback function.

Remarks

Call NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES_INIT to initialize this structure. The client driver passes an initialized NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES structure as a parameter to NetAdapterOffloadSetRxChecksumCapabilities.

See also

Checksum Offload

EVT_NET_ADAPTER_OFFLOAD_SET_RX_CHECKSUM

NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES_INIT

NetAdapterOffloadSetRxChecksumCapabilities