diff options
author | Florin Coras <fcoras@cisco.com> | 2019-08-11 19:49:05 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-08-12 16:45:29 +0000 |
commit | 79c04d622a55b75de969bf010cdcb820ccfbe816 (patch) | |
tree | 62665f92a5959b32c346cf3a2785bc56969ad635 /src/vnet/tcp | |
parent | 12b245e161b69fe64b16880b36324e86030fe305 (diff) |
tcp: handle fin+rst+syn in closing state
Type: fix
Change-Id: I32d4d4a5de04e89087f4ab4a5c425eda572932a8
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp')
-rwxr-xr-x | src/vnet/tcp/tcp_input.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp_input.c b/src/vnet/tcp/tcp_input.c index 504133cf2a7..595a76d6853 100755 --- a/src/vnet/tcp/tcp_input.c +++ b/src/vnet/tcp/tcp_input.c @@ -3808,6 +3808,8 @@ do { \ TCP_ERROR_NONE); _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); + _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, + TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); /* FIN confirming that the peer (app) has closed */ |