NET_RING_COLLECTION - NtDoc

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

typedef struct _NET_RING_COLLECTION {
  NET_RING *Rings[NetRingTypeDataBuffer + 1];
} NET_RING_COLLECTION;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ringcollection-_net_ring_collection)

_NET_RING_COLLECTION structure

Description

The NET_RING_COLLECTION structure describes the collection of net rings that belong to a packet queue.

Members

Rings

A pointer to an array of NET_RING structures.

Remarks

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.

See also

Introduction to net rings