diff options
author | Florin Coras <fcoras@cisco.com> | 2019-03-06 21:13:42 -0800 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-03-08 20:03:31 +0000 |
commit | 14ed6df9006b1266d075ac0af248cb04ebc558d9 (patch) | |
tree | c2b167271d794378ab6608423d1283d8e0cb7c7c /src/vnet/tcp/tcp_output.c | |
parent | 7e74bf39ecd97f6bf79bde70d07f907548a83783 (diff) |
session/tcp/vcl: fixes and optimizations
Change-Id: Idc7dfe743399dd8dee0f6b3ec83f194f3fca580b
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp/tcp_output.c')
-rw-r--r-- | src/vnet/tcp/tcp_output.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp_output.c b/src/vnet/tcp/tcp_output.c index 94f96b6fb62..2f728cc7333 100644 --- a/src/vnet/tcp/tcp_output.c +++ b/src/vnet/tcp/tcp_output.c @@ -1173,8 +1173,9 @@ tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b, } u32 -tcp_push_header (tcp_connection_t * tc, vlib_buffer_t * b) +tcp_session_push_header (transport_connection_t * tconn, vlib_buffer_t * b) { + tcp_connection_t *tc = (tcp_connection_t *) tconn; tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, /* compute opts */ 0, /* burst */ 1); tc->snd_una_max = tc->snd_nxt; |