aboutsummaryrefslogtreecommitdiffstats
path: root/src/vcl/vppcom.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vcl/vppcom.h')
-rw-r--r--src/vcl/vppcom.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vcl/vppcom.h b/src/vcl/vppcom.h
index 45ff11608e7..55710b782ee 100644
--- a/src/vcl/vppcom.h
+++ b/src/vcl/vppcom.h
@@ -65,6 +65,7 @@ typedef enum
VPPCOM_EBADFD = -EBADFD,
VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
VPPCOM_ECONNRESET = -ECONNRESET,
+ VPPCOM_ENOTCONN = -ENOTCONN,
VPPCOM_ECONNREFUSED = -ECONNREFUSED,
VPPCOM_ETIMEDOUT = -ETIMEDOUT,
} vppcom_error_t;
@@ -123,6 +124,10 @@ vppcom_retval_str (int retval)
st = "VPPCOM_ECONNRESET";
break;
+ case VPPCOM_ENOTCONN:
+ st = "VPPCOM_ENOTCONN";
+ break;
+
case VPPCOM_ECONNREFUSED:
st = "VPPCOM_ECONNREFUSED";
break;