// 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
No description available.
The NET_BUFFER_LIST_DATA structure contains management data for the NET_BUFFER structures that are linked to a NET_BUFFER_LIST structure.
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.
The NET_BUFFER_LIST_HEADER structure contains a NET_BUFFER_LIST_DATA structure.