NET_RX_FRAGMENT_BUFFER_ATTACHMENT_MODE - NtDoc

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

typedef enum _NET_RX_FRAGMENT_BUFFER_ATTACHMENT_MODE {
  NetRxFragmentBufferAttachmentModeSystem = 0,
  NetRxFragmentBufferAttachmentModeDriver = 1
} NET_RX_FRAGMENT_BUFFER_ATTACHMENT_MODE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-netadapter-_net_rx_fragment_buffer_attachment_mode)

_NET_RX_FRAGMENT_BUFFER_ATTACHMENT_MODE enumeration

Description

The NET_RX_FRAGMENT_BUFFER_ATTACHMENT_MODE enumeration identifies how the operating system should pre-attach NET_FRAGMENT buffers to NET_PACKETs for a net adapter client driver's receive queues.

Constants

NetRxFragmentBufferAttachmentModeSystem:0

The operating system attaches receive NET_FRAGMENTs to NET_PACKETs automatically. This value is valid only when receive fragment buffer allocation, identified by the NET_RX_FRAGMENT_BUFFER_ALLOCATION_MODE enumeration, is also set to NetRxFragmentBufferAllocationModeSystem.

NetRxFragmentBufferAttachmentModeDriver:1

The client driver is responsible for attaching NET_FRAGMENT receive buffers to NET_PACKETs.

Remarks

This enumeration is a value of the NET_ADAPTER_RX_CAPABILITIES structure. Together with NET_RX_FRAGMENT_BUFFER_ALLOCATION_MODE, it specifies how a net adapter client driver would like to configure its receive queue fragment buffers. For more information, see NET_ADAPTER_RX_CAPABILITIES.

See also