diff options
author | Florin Coras <fcoras@cisco.com> | 2021-06-04 15:59:41 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-06-05 21:25:39 +0000 |
commit | 2645f68985df4955fd8a161224595dad9f4ab488 (patch) | |
tree | 9df8d7c8011e7700b482fc3424764916a84d6291 /src/vcl/vppcom.h | |
parent | e20d3c8c007bb7437ef7d1db47cfefb4235c0fe6 (diff) |
vcl: epoll error handling fixes and improvements
- return VPPCOM_EEXIST if attempting to re-add a session
- return VPPCOM_ENOENT if the session to be removed is not epolled
- generate EPOLLIN if adding it through a mod operation on a session
that has data and did not have the event previously set.
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I728a06b8cf84af8d8c1dea7406e284de8886dffc
Diffstat (limited to 'src/vcl/vppcom.h')
-rw-r--r-- | src/vcl/vppcom.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vcl/vppcom.h b/src/vcl/vppcom.h index ae157ccc8b4..c2a625e974e 100644 --- a/src/vcl/vppcom.h +++ b/src/vcl/vppcom.h @@ -98,7 +98,8 @@ typedef enum VPPCOM_ECONNREFUSED = -ECONNREFUSED, VPPCOM_ETIMEDOUT = -ETIMEDOUT, VPPCOM_EEXIST = -EEXIST, - VPPCOM_ENOPROTOOPT = -ENOPROTOOPT + VPPCOM_ENOPROTOOPT = -ENOPROTOOPT, + VPPCOM_ENOENT = -ENOENT, } vppcom_error_t; typedef enum |