X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fioam%2Flib-pot%2Fpot_test.c;h=2b528ece54eddc381982a55348c849ffa33c43f3;hb=caa176b5435130f03051700731d4bf7a605719f8;hp=48d5bd404da878220e0e61efbd23771e70a93de4;hpb=8a2aea3fce9dad7c729c82ee39ce95b4f357bc83;p=vpp.git diff --git a/src/plugins/ioam/lib-pot/pot_test.c b/src/plugins/ioam/lib-pot/pot_test.c index 48d5bd404da..2b528ece54e 100644 --- a/src/plugins/ioam/lib-pot/pot_test.c +++ b/src/plugins/ioam/lib-pot/pot_test.c @@ -21,7 +21,7 @@ #include #include #include -#include + #include #define __plugin_msg_base pot_test_main.msg_id_base @@ -132,9 +132,9 @@ static int api_pot_profile_add (vat_main_t *vam) u64 secret_key = 0; u32 bits = MAX_BITS; u64 lpc = 0, poly2 = 0; - f64 timeout; u8 id = 0; int rv = 0; + int ret; while (unformat_check_input(input) != UNFORMAT_END_OF_INPUT) { @@ -188,7 +188,9 @@ static int api_pot_profile_add (vat_main_t *vam) mp->id = id; mp->max_bits = bits; - S; W; + S(mp); + W (ret); + return ret; OUT: vec_free(name); @@ -203,7 +205,7 @@ static int api_pot_profile_activate (vat_main_t *vam) u8 *name = NULL; u8 id = 0; int rv = 0; - f64 timeout; + int ret; while (unformat_check_input(input) != UNFORMAT_END_OF_INPUT) { @@ -228,7 +230,9 @@ static int api_pot_profile_activate (vat_main_t *vam) clib_memcpy(mp->list_name, name, mp->list_name_len); mp->id = id; - S; W; + S(mp); + W (ret); + return ret; OUT: vec_free(name); @@ -239,20 +243,21 @@ OUT: static int api_pot_profile_del (vat_main_t *vam) { vl_api_pot_profile_del_t *mp; - f64 timeout; + int ret; M(POT_PROFILE_DEL, mp); mp->list_name_len = 0; - S; W; - return 0; + S(mp); + W (ret); + return ret; } static int api_pot_profile_show_config_dump (vat_main_t *vam) { unformat_input_t *input = vam->input; vl_api_pot_profile_show_config_dump_t *mp; - f64 timeout; u8 id = 0; + int ret; while(unformat_check_input(input) != UNFORMAT_END_OF_INPUT) { @@ -264,8 +269,9 @@ static int api_pot_profile_show_config_dump (vat_main_t *vam) mp->id = id; - S; W; - return 0; + S(mp); + W (ret); + return ret; } /*