diff options
author | Florin Coras <fcoras@cisco.com> | 2020-02-14 05:33:46 +0000 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-02-14 15:17:41 +0000 |
commit | 067f9544d52c95c0b60b0e8425fce1e295120180 (patch) | |
tree | 16ec7e61507ffcc7485f61cdc93ee9fa40c2f76a /src/vcl/vcl_private.h | |
parent | a357a938019c8df2b061cc5bd14cd8a64fac694f (diff) |
vcl: fix ldp read on closing session
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I60be191866d20721951ad22f571a2a3275511e12
Diffstat (limited to 'src/vcl/vcl_private.h')
-rw-r--r-- | src/vcl/vcl_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vcl/vcl_private.h b/src/vcl/vcl_private.h index faab1c2282b..b50bad26b90 100644 --- a/src/vcl/vcl_private.h +++ b/src/vcl/vcl_private.h @@ -543,8 +543,8 @@ vcl_session_is_closing (vcl_session_t * s) static inline int vcl_session_closing_error (vcl_session_t * s) { - return s->session_state == STATE_DISCONNECT - ? VPPCOM_ECONNRESET : VPPCOM_ECONNABORTED; + /* Return 0 on closing sockets */ + return s->session_state == STATE_DISCONNECT ? VPPCOM_ECONNRESET : 0; } static inline int |