EVT_NET_ADAPTER_OFFLOAD_SET_RSC - NtDoc

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

EVT_NET_ADAPTER_OFFLOAD_SET_RSC EvtNetAdapterOffloadSetRsc;

void EvtNetAdapterOffloadSetRsc(
  [_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_rsc)

EVT_NET_ADAPTER_OFFLOAD_SET_RSC callback function

Description

The EvtNetAdapterOffloadSetRsc callback function is implemented by the client driver to set changes in active receive segment coalescence (RSC) offload capabilities.

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.

Prototype

//Declaration

EVT_NET_ADAPTER_OFFLOAD_SET_LSO EvtNetAdapterOffloadSetRsc;

// Definition

VOID EvtNetAdapterOffloadSetRsc
(
    NETADAPTER Adapter,
    NETOFFLOAD Offload
)
{...}

Remarks

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

For more info, see NetAdapterCx hardware offloads.

See also

NetAdapterCx hardware offloads

NET_ADAPTER_OFFLOAD_RSC_CAPABILITIES

NetAdapterOffloadSetRscCapabilities