// netadapter.h
typedef enum _NET_RX_FRAGMENT_BUFFER_ALLOCATION_MODE {
NetRxFragmentBufferAllocationModeSystem = 0,
NetRxFragmentBufferAllocationModeDriver = 1
} NET_RX_FRAGMENT_BUFFER_ALLOCATION_MODE;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_RX_FRAGMENT_BUFFER_ALLOCATION_MODE enumeration identifies how the operating system should allocate NET_FRAGMENT receive buffers for a net adapter client driver's receive queues.
NetRxFragmentBufferAllocationModeSystem:0The operating system allocates NET_FRAGMENT receive buffers on behalf of the client driver.
NetRxFragmentBufferAllocationModeDriver:1The operating system never allocates NET_FRAGMENT receive buffers. The client driver is responsible for buffer allocation.
This enumeration is a value of the NET_ADAPTER_RX_CAPABILITIES structure. Together with NET_RX_FRAGMENT_BUFFER_ATTACHMENT_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.