From 48057bd23433a352338358ca1f6cdc6cebd84f08 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Tue, 6 Jul 2021 21:07:50 -0700 Subject: tcp session: next node config on connects Type: improvement Signed-off-by: Florin Coras Change-Id: Ief06b1509d31b55efc8d1436b6ff9e01c6037a32 --- src/vnet/tcp/tcp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/vnet/tcp') diff --git a/src/vnet/tcp/tcp.c b/src/vnet/tcp/tcp.c index c54a994fede..4b1dd8e5cf5 100644 --- a/src/vnet/tcp/tcp.c +++ b/src/vnet/tcp/tcp.c @@ -831,6 +831,8 @@ tcp_session_open (transport_endpoint_cfg_t * rmt) /* The other connection vars will be initialized after SYN ACK */ tcp_connection_timers_init (tc); tc->mss = rmt->mss; + tc->next_node_index = rmt->next_node_index; + tc->next_node_opaque = rmt->next_node_opaque; TCP_EVT (TCP_EVT_OPEN, tc); tc->state = TCP_STATE_SYN_SENT; -- cgit 1.2.3-korg