// ringcollection.h
typedef struct _NET_RING_COLLECTION {
NET_RING *Rings[NetRingTypeDataBuffer + 1];
} NET_RING_COLLECTION;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_RING_COLLECTION structure describes the collection of net rings that belong to a packet queue.
RingsA pointer to an array of NET_RING structures.
Call NetRxQueueGetRingCollection or NetTxQueueGetRingCollection to get a packet queue's ring collection. You can then use this collection structure to retrieve the queue's packet ring and fragment ring. For more information about using net rings, see Introduction to net rings.