diff options
author | Florin Coras <fcoras@cisco.com> | 2020-04-17 16:10:51 +0000 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-04-17 19:07:39 +0000 |
commit | e57df7c6771906ce9e1b373028755eabc4764c0f (patch) | |
tree | 5fe1ea89c07c8b0ec803edf88a740342e2e175b9 /src | |
parent | ce21599c8af34a3f9da813a3c953a38a16316b4d (diff) |
tcp: cubic as default cc algorithm
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I48ce827966667a767440149769eb1b24616ce4c1
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/tcp/tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp.c b/src/vnet/tcp/tcp.c index 7798009d2cd..df3d61db48d 100644 --- a/src/vnet/tcp/tcp.c +++ b/src/vnet/tcp/tcp.c @@ -1421,7 +1421,7 @@ tcp_configuration_init (void) tcp_cfg.enable_tx_pacing = 1; tcp_cfg.allow_tso = 0; tcp_cfg.csum_offload = 1; - tcp_cfg.cc_algo = TCP_CC_NEWRENO; + tcp_cfg.cc_algo = TCP_CC_CUBIC; tcp_cfg.rwnd_min_update_ack = 1; /* Time constants defined as timer tick (100ms) multiples */ |