diff options
author | Florin Coras <fcoras@cisco.com> | 2024-06-10 13:12:40 -0700 |
---|---|---|
committer | Dave Barach <vpp@barachs.net> | 2024-06-14 23:27:49 +0000 |
commit | 1c30d2d8bc80240b7435d313e2eeb010715eea5e (patch) | |
tree | 36a004b12ae7c51ae45f57b8288ecb3b7b4284da /src/vnet/tcp/tcp.c | |
parent | bee28afbb29992c4f332dcb319fbc3eacdc6e52b (diff) |
tcp: make syn-rcvd timeout configurable
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ic89570315a5c3c00e0e89c5535929313916869eb
Diffstat (limited to 'src/vnet/tcp/tcp.c')
-rw-r--r-- | src/vnet/tcp/tcp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp.c b/src/vnet/tcp/tcp.c index efc72a227e8..28d7ed9fac1 100644 --- a/src/vnet/tcp/tcp.c +++ b/src/vnet/tcp/tcp.c @@ -1642,6 +1642,9 @@ tcp_configuration_init (void) /* This value is seconds */ tcp_cfg.cleanup_time = 0.1; /* 100ms */ + + /* Time constants defined as tcp tick (1us) multiples */ + tcp_cfg.syn_rcvd_time = TCP_ESTABLISH_TIME; } static clib_error_t * |