// 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 referenceNo description available.
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.
NetRxFragmentBufferAttachmentModeSystem:0The 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:1The client driver is responsible for attaching NET_FRAGMENT receive buffers to NET_PACKETs.
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.