Flowgrind
Advanced TCP traffic generator
list_node Struct Reference

Single element in a doubly linked list. More...

#include <fg_list.h>

Data Fields

void * data
 Pointer to user defined data stored with this node. More...
 
struct list_nodenext
 Pointer to the previous node in the list. More...
 
struct list_nodeprevious
 Pointer to the next node in the list. More...
 

Detailed Description

Single element in a doubly linked list.

Definition at line 36 of file fg_list.h.

Field Documentation

◆ data

void* list_node::data

Pointer to user defined data stored with this node.

Definition at line 38 of file fg_list.h.

◆ next

struct list_node* list_node::next

Pointer to the previous node in the list.

NULL if head of the list.

Definition at line 40 of file fg_list.h.

◆ previous

struct list_node* list_node::previous

Pointer to the next node in the list.

NULL if tail of the list.

Definition at line 42 of file fg_list.h.


The documentation for this struct was generated from the following file: