// netadapteroffload.h
EVT_NET_ADAPTER_OFFLOAD_SET_RSC EvtNetAdapterOffloadSetRsc;
void EvtNetAdapterOffloadSetRsc(
[_In_] NETADAPTER Adapter,
[_In_] NETOFFLOAD Offload
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The EvtNetAdapterOffloadSetRsc callback function is implemented by the client driver to set changes in active receive segment coalescence (RSC) offload capabilities.
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.
//Declaration
EVT_NET_ADAPTER_OFFLOAD_SET_LSO EvtNetAdapterOffloadSetRsc;
// Definition
VOID EvtNetAdapterOffloadSetRsc
(
NETADAPTER Adapter,
NETOFFLOAD Offload
)
{...}
Register your implementation of this callback function by setting the appropriate parameter when calling NetAdapterOffloadSetRscCapabilities.
For more info, see NetAdapterCx hardware offloads.
NetAdapterCx hardware offloads
NET_ADAPTER_OFFLOAD_RSC_CAPABILITIES
NetAdapterOffloadSetRscCapabilities