diff options
author | Florin Coras <fcoras@cisco.com> | 2021-09-09 12:04:17 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-09-13 13:39:18 +0000 |
commit | 596c45b22211c9af243b624dc037f58c0aa1c302 (patch) | |
tree | 544b30c173bfe2297e41cc6f2ad7a545342d039c /src/vnet/tcp/tcp.c | |
parent | db79ac0502f3a2ecc20d4fa2e9f9be20bfb8e18c (diff) |
tcp session: initialize sw_if_index at connect time
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Id0e67a9ce9c5d8bca2cd7a30493f03a02a46dc46
Diffstat (limited to 'src/vnet/tcp/tcp.c')
-rw-r--r-- | src/vnet/tcp/tcp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp.c b/src/vnet/tcp/tcp.c index 4b1dd8e5cf5..62267bbdd1f 100644 --- a/src/vnet/tcp/tcp.c +++ b/src/vnet/tcp/tcp.c @@ -831,6 +831,7 @@ 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->sw_if_index = rmt->peer.sw_if_index; tc->next_node_index = rmt->next_node_index; tc->next_node_opaque = rmt->next_node_opaque; |