From 2645f68985df4955fd8a161224595dad9f4ab488 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Fri, 4 Jun 2021 15:59:41 -0700 Subject: 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 Change-Id: I728a06b8cf84af8d8c1dea7406e284de8886dffc --- src/vcl/vppcom.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/vcl/vppcom.h') 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 -- cgit 1.2.3-korg