diff options
author | Florin Coras <fcoras@cisco.com> | 2019-02-07 00:15:53 -0800 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2019-02-07 00:16:30 -0800 |
commit | d4c49be5e20406220cf89083c9df86c3c0761a81 (patch) | |
tree | 3749f1949e0caa0b08f39f78603af75c208cdaf3 /src/vnet/tcp/tcp.h | |
parent | 5de3fec531691a81b3f77ed965488dc8dbf1e9a1 (diff) |
tcp: fix reset sending in syn-sent
Change-Id: I468b1015bca5f95b162fb49e904aa4e4d38db75e
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp/tcp.h')
-rw-r--r-- | src/vnet/tcp/tcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index f5f8520d83a..68750ce373f 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -615,7 +615,7 @@ tcp_half_open_connection_get (u32 conn_index) void tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b); void tcp_make_synack (tcp_connection_t * ts, vlib_buffer_t * b); void tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt, - u8 is_ip4); + u32 thread_index, u8 is_ip4); void tcp_send_reset (tcp_connection_t * tc); void tcp_send_syn (tcp_connection_t * tc); void tcp_send_synack (tcp_connection_t * tc); |