diff options
author | Florin Coras <fcoras@cisco.com> | 2018-09-25 14:00:34 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-11-09 11:24:22 +0000 |
commit | 2e31cc35ca5db7f16c8052578d79f1ec84c0acb5 (patch) | |
tree | 673f9bc946628d9d554c126f92d75eab4d67d0cb /src/vnet/CMakeLists.txt | |
parent | 97670eb3c643eefbecfbe2d61a8f06cde9516778 (diff) |
tcp: basic cubic implementation
Because the code is not optimized, newreno is still the default
congestion control algorithm.
Change-Id: I7061cc80c5a75fa8e8265901fae4ea2888e35173
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/CMakeLists.txt')
-rw-r--r-- | src/vnet/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/CMakeLists.txt b/src/vnet/CMakeLists.txt index 708e56d6370..d7aa4a5a951 100644 --- a/src/vnet/CMakeLists.txt +++ b/src/vnet/CMakeLists.txt @@ -537,6 +537,7 @@ list(APPEND VNET_SOURCES tcp/tcp_output.c tcp/tcp_input.c tcp/tcp_newreno.c + tcp/tcp_cubic.c tcp/tcp.c ) |