diff options
Diffstat (limited to 'vpp-api-test/vat/vat.h')
-rw-r--r-- | vpp-api-test/vat/vat.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vpp-api-test/vat/vat.h b/vpp-api-test/vat/vat.h index 0d012cf2d32..b32d9ffc754 100644 --- a/vpp-api-test/vat/vat.h +++ b/vpp-api-test/vat/vat.h @@ -94,6 +94,10 @@ typedef struct { /* subinterface table */ sw_interface_subif_t * sw_if_subif_table; + /* Graph node table */ + uword * graph_node_index_by_name; + vlib_node_t ** graph_nodes; + /* ip tables */ ip_details_t * ip_details_by_sw_if_index[2]; @@ -115,6 +119,7 @@ typedef struct { /* Errors by number */ uword * error_string_by_error_number; + /* Main thread can spin (w/ timeout) here if needed */ u32 async_mode; u32 async_errors; |