NetAdapterOffloadSetGsoCapabilities - NtDoc

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

void NetAdapterOffloadSetGsoCapabilities(
  [_In_] NETADAPTER                           Adapter,
  [_In_] NET_ADAPTER_OFFLOAD_GSO_CAPABILITIES *HardwareCapabilities
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-netadapteroffload-netadapteroffloadsetgsocapabilities)

NetAdapterOffloadSetGsoCapabilities function

Description

The NetAdapterOffloadSetGsoCapabilities function sets the hardware Generic Segmentation Offload (GSO) capabilities of a network adapter.

Parameters

Adapter [_In_]

A handle to a NETADAPTER object that the client driver obtained from a previous call to NetAdapterCreate.

HardwareCapabilities [_In_]

A pointer to a driver-allocated and initialized NET_ADAPTER_OFFLOAD_GSO_CAPABILITIES structure that describes the hardware's GSO capabilities.

Remarks

Client drivers typically call this function from within their EvtDevicePrepareHardware callback, but must call this function before calling NetAdapterStart.

See also

Generic Segmentation Offload

NetAdapterCreate

NET_ADAPTER_OFFLOAD_GSO_CAPABILITIES

NET_ADAPTER_OFFLOAD_GSO_CAPABILITIES_INIT

EVT_NET_ADAPTER_OFFLOAD_SET_GSO

NetAdapterStart