NET_BUFFER_LIST_DATA - NtDoc

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

typedef struct _NET_BUFFER_LIST_DATA {
  NET_BUFFER_LIST *Next;
  NET_BUFFER      *FirstNetBuffer;
} NET_BUFFER_LIST_DATA, *PNET_BUFFER_LIST_DATA;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-nbl-net_buffer_list_data)

_NET_BUFFER_LIST_DATA structure

Description

The NET_BUFFER_LIST_DATA structure contains management data for the NET_BUFFER structures that are linked to a NET_BUFFER_LIST structure.

Members

Next

A pointer to the next NET_BUFFER_LIST structure in a linked list of NET_BUFFER_LIST structures. If this structure is the last NET_BUFFER_LIST structure in the list, this member is NULL.

FirstNetBuffer

A pointer to the first NET_BUFFER structure in the linked list of NET_BUFFER structures.

Remarks

The NET_BUFFER_LIST_HEADER structure contains a NET_BUFFER_LIST_DATA structure.

See also

NET_BUFFER

NET_BUFFER_LIST

NET_BUFFER_LIST_HEADER