NetAdapterSetDataPathCapabilities - NtDoc

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

void NetAdapterSetDataPathCapabilities(
  [_In_] NETADAPTER                  Adapter,
  [_In_] NET_ADAPTER_TX_CAPABILITIES *TxCapabilities,
  [_In_] NET_ADAPTER_RX_CAPABILITIES *RxCapabilities
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-netadapter-netadaptersetdatapathcapabilities)

NetAdapterSetDataPathCapabilities function

Description

Sets the data path capabilities of the network adapter.

Parameters

Adapter [_In_]

The network adapter object that the client created in a prior call to NetAdapterCreate.

TxCapabilities [_In_]

A pointer to an allocated and initialized NET_ADAPTER_TX_CAPABILITIES structure.

RxCapabilities [_In_]

A pointer to an allocated and initialized NET_ADAPTER_RX_CAPABILITIES structure.

Remarks

The client driver must call this function when starting a net adapter, before calling NetAdapterStart.

This function, along with a few other set capability functions (see below), is the replacement for the NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES union that a (non-WDF) client of Ndis.sys sets by calling NdisMSetMiniportAttributes.

See also

NetAdapterSetLinkLayerCapabilities