diff options
author | Florin Coras <fcoras@cisco.com> | 2017-08-18 19:28:03 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2017-08-25 16:39:42 +0000 |
commit | 1f152cd6faf96b524b6b7071b5cffe1916f9c5cc (patch) | |
tree | b778792a51e949cd1133b5ca03e5645538e6cf1a /src/vnet/session/stream_session.h | |
parent | 27de761048e561f849fdda690d69e5644a9360d4 (diff) |
tcp: retransmit and multi-buffer segment fixes and improvements
- set session state as closed on session manager delete
- enable retransmit as opposed to persist timer after persist timer completes
- properly discard buffer chain bytes when new data overlaps ooo
segments
- don't use rxt bytes in snd space estimate used on tx path
Change-Id: Id9cab686e532e5fe70c775d5440260e8eb890a9f
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/session/stream_session.h')
-rw-r--r-- | src/vnet/session/stream_session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/session/stream_session.h b/src/vnet/session/stream_session.h index 533cf97fef9..275052d3ee5 100644 --- a/src/vnet/session/stream_session.h +++ b/src/vnet/session/stream_session.h @@ -56,7 +56,7 @@ typedef struct _stream_session_t u8 session_type; /** State */ - u8 session_state; + volatile u8 session_state; u8 thread_index; |