X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvpp-api%2Fvapi%2Fvapi.c;h=658fd7e584c91ac5718e296236b7536fd4416a9a;hb=fd67ece3d3eda0bd896aaa166d89b4f8e7f4e98f;hp=25c0b3be1d34c28d64108cb1372877955f663baf;hpb=e4bb5bc7c153ec1b26abae00461aaf19f5541419;p=vpp.git diff --git a/src/vpp-api/vapi/vapi.c b/src/vpp-api/vapi/vapi.c index 25c0b3be1d3..658fd7e584c 100644 --- a/src/vpp-api/vapi/vapi.c +++ b/src/vpp-api/vapi/vapi.c @@ -238,7 +238,7 @@ vapi_lookup_vapi_msg_id_t (vapi_ctx_t ctx, u16 vl_msg_id) { return ctx->vl_msg_id_to_vapi_msg_t[vl_msg_id]; } - return ~0; + return INVALID_MSG_ID; } vapi_error_e @@ -337,7 +337,7 @@ vapi_connect (vapi_ctx_t ctx, const char *name, u8 scratch[m->name_with_crc_len + 1]; memcpy (scratch, m->name_with_crc, m->name_with_crc_len + 1); u32 id = vl_api_get_msg_index (scratch); - if (~0 != id) + if (INVALID_MSG_ID != id) { if (id > UINT16_MAX) { @@ -716,7 +716,7 @@ vapi_dispatch_one (vapi_ctx_t ctx) vapi_msg_free (ctx, msg); return VAPI_EINVAL; } - if (~0 == (unsigned) ctx->vl_msg_id_to_vapi_msg_t[vpp_id]) + if (INVALID_MSG_ID == (unsigned) ctx->vl_msg_id_to_vapi_msg_t[vpp_id]) { VAPI_ERR ("Unknown msg ID received, id `%u' marked as not supported", (unsigned) vpp_id);