diff options
author | Ryujiro Shibuya <ryujiro.shibuya@owmobility.com> | 2020-10-22 05:26:32 +0000 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2020-10-21 23:13:36 -0700 |
commit | 6fa0988c02f56bb763ee17b11fdcf5372d50c5e9 (patch) | |
tree | d2a848c7f7816283005583df57e8a3fc1e0f1112 /src/vnet/tcp/tcp.h | |
parent | 055e64066d88576ed516e5f50de7ec3d5b6cef0a (diff) |
tcp: updating time constans as timer tick changed
Type: fix
Signed-off-by: Ryujiro Shibuya <ryujiro.shibuya@owmobility.com>
Change-Id: Ibe305b96f04ffdc95ddb07d144dc00119ae69a07
Diffstat (limited to 'src/vnet/tcp/tcp.h')
-rw-r--r-- | src/vnet/tcp/tcp.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index 29d30dc0691..a3b20c88682 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -164,25 +164,25 @@ typedef struct tcp_configuration_ u32 rwnd_min_update_ack; /** Delayed ack time (disabled) */ - u16 delack_time; + u32 delack_time; /** Timer ticks to wait for close from app */ - u16 closewait_time; + u32 closewait_time; /** Timer ticks to wait in time-wait. Also known as 2MSL */ - u16 timewait_time; + u32 timewait_time; /** Timer ticks to wait in fin-wait1 to send fin and rcv fin-ack */ - u16 finwait1_time; + u32 finwait1_time; /** Timer ticks to wait in last ack for ack */ - u16 lastack_time; + u32 lastack_time; /** Timer ticks to wait in fin-wait2 for fin */ - u16 finwait2_time; + u32 finwait2_time; /** Timer ticks to wait in closing for fin ack */ - u16 closing_time; + u32 closing_time; /** Time to wait (sec) before cleaning up the connection */ f32 cleanup_time; |