From 07beadedea9b23d97e41b3090590326c18151c66 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Thu, 20 Jun 2019 12:18:31 -0700 Subject: tcp: add option to pass opaque to next node Type:feature Change-Id: I0b72954a6ae6a05abe0761cb4f227072863f127b Signed-off-by: Florin Coras --- src/vnet/tcp/tcp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/vnet/tcp/tcp.h') diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index 132ec13892d..bc1e3c0f813 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -323,7 +323,8 @@ typedef struct _tcp_connection u32 tx_fifo_size; /**< Tx fifo size. Used to constrain cwnd */ u32 psh_seq; /**< Add psh header for seg that includes this */ - u32 out_next_index; /**< Can be used to control next node in output */ + u32 next_node_index; /**< Can be used to control next node in output */ + u32 next_node_opaque; /**< Opaque to pass to next node */ } tcp_connection_t; /* *INDENT-OFF* */ -- cgit 1.2.3-korg