X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvcl%2Fvppcom.h;h=55710b782ee148b0063f28adf484293fcb036a56;hb=4878cbe276ec1131d0cf30ac5df18aa9ba699bc4;hp=45ff11608e7306c86f2d57a2e739d7157a4f94a6;hpb=6a9b68b268f9dc87a221fac0ec9b0b67c16106ca;p=vpp.git 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;