diff options
author | Florin Coras <fcoras@cisco.com> | 2019-08-16 09:44:00 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-08-19 09:22:38 +0000 |
commit | 12f6936cd8f69f17820ef749515fcf4d50001c60 (patch) | |
tree | 50d071be4ac5511e72262ffe873f6a33a4535a81 /src/vnet/tcp/tcp.h | |
parent | d206724e78d99aee5d91d43fb0832d51d70eb57a (diff) |
tcp: set cc_algo on connection alloc
Type: feature
Change-Id: Ie00329b11e26cab5db64b9c006171d283854c8ef
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, 2 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index 81ce1d52bde..c71b57777e6 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -705,6 +705,8 @@ void tcp_connection_cleanup (tcp_connection_t * tc); void tcp_connection_del (tcp_connection_t * tc); int tcp_half_open_connection_cleanup (tcp_connection_t * tc); tcp_connection_t *tcp_connection_alloc (u8 thread_index); +tcp_connection_t *tcp_connection_alloc_w_base (u8 thread_index, + tcp_connection_t * base); void tcp_connection_free (tcp_connection_t * tc); void tcp_connection_reset (tcp_connection_t * tc); int tcp_configure_v4_source_address_range (vlib_main_t * vm, |