diff options
author | Ole Troan <ot@cisco.com> | 2021-02-17 14:10:04 +0100 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2021-02-18 08:18:46 +0000 |
commit | 71134f26a15f3d6b055dc122d050d71f8b8d3ed0 (patch) | |
tree | 07503f5d5a19722718be9fae2602752e85db17f7 /src/vat2/jsonconvert.h | |
parent | 919654c07bb8fd2df30110220bbcc74fd3a40d01 (diff) |
vat2: jsonconvert return checking - coverity
Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I8348645927519800d2390d27e01fae612602a6eb
Diffstat (limited to 'src/vat2/jsonconvert.h')
-rw-r--r-- | src/vat2/jsonconvert.h | 86 |
1 files changed, 43 insertions, 43 deletions
diff --git a/src/vat2/jsonconvert.h b/src/vat2/jsonconvert.h index ee1355f1f37..038ad74ac0e 100644 --- a/src/vat2/jsonconvert.h +++ b/src/vat2/jsonconvert.h @@ -35,54 +35,54 @@ #define _(T) \ int vl_api_ ##T## _fromjson(cJSON *o, T *d); - foreach_vat2_fromjson +foreach_vat2_fromjson #undef _ -int vl_api_bool_fromjson(cJSON *o, bool *d); - int vl_api_ip4_address_t_fromjson (void **mp, int *len, cJSON *o, - vl_api_ip4_address_t *a); - int vl_api_ip4_prefix_t_fromjson (void **mp, int *len, cJSON *o, - vl_api_ip4_prefix_t *a); - int vl_api_ip4_address_with_prefix_t_fromjson (void **mp, int *len, cJSON *o, - vl_api_ip4_prefix_t *a); - int vl_api_ip6_address_t_fromjson (void **mp, int *len, cJSON *o, - vl_api_ip6_address_t *a); - int vl_api_ip6_prefix_t_fromjson (void **mp, int *len, cJSON *o, - vl_api_ip6_prefix_t *a); - int vl_api_ip6_address_with_prefix_t_fromjson (void **mp, int *len, cJSON *o, - vl_api_ip6_prefix_t *a); - int vl_api_address_t_fromjson (void **mp, int *len, cJSON *o, - vl_api_address_t *a); - int vl_api_prefix_t_fromjson (void **mp, int *len, cJSON *o, - vl_api_prefix_t *a); - int vl_api_address_with_prefix_t_fromjson (void **mp, int *len, cJSON *o, - vl_api_prefix_t *a); - int vl_api_mac_address_t_fromjson (void **mp, int *len, cJSON *o, - vl_api_mac_address_t *a); + /* Prototypes */ + int + vl_api_bool_fromjson (cJSON *o, bool *d); +int vl_api_ip4_address_t_fromjson (void **mp, int *len, cJSON *o, + vl_api_ip4_address_t *a); +int vl_api_ip4_prefix_t_fromjson (void **mp, int *len, cJSON *o, + vl_api_ip4_prefix_t *a); +int vl_api_ip4_address_with_prefix_t_fromjson (void **mp, int *len, cJSON *o, + vl_api_ip4_prefix_t *a); +int vl_api_ip6_address_t_fromjson (void **mp, int *len, cJSON *o, + vl_api_ip6_address_t *a); +int vl_api_ip6_prefix_t_fromjson (void **mp, int *len, cJSON *o, + vl_api_ip6_prefix_t *a); +int vl_api_ip6_address_with_prefix_t_fromjson (void **mp, int *len, cJSON *o, + vl_api_ip6_prefix_t *a); +int vl_api_address_t_fromjson (void **mp, int *len, cJSON *o, + vl_api_address_t *a); +int vl_api_prefix_t_fromjson (void **mp, int *len, cJSON *o, + vl_api_prefix_t *a); +int vl_api_address_with_prefix_t_fromjson (void **mp, int *len, cJSON *o, + vl_api_prefix_t *a); +int vl_api_mac_address_t_fromjson (void **mp, int *len, cJSON *o, + vl_api_mac_address_t *a); - uword unformat_ip4_address (unformat_input_t *input, va_list *args); - uword unformat_ip6_address (unformat_input_t *input, va_list *args); - u8 *format_ip6_address (u8 *s, va_list *args); - uword unformat_mac_address (unformat_input_t *input, va_list *args); - u8 *format_ip4_address (u8 *s, va_list *args); - u8 *format_vl_api_interface_index_t (u8 *s, va_list *args); - uword unformat_vl_api_interface_index_t (unformat_input_t *input, - va_list *args); - u8 *format_vl_api_timestamp_t (u8 *s, va_list *args); - u8 *format_vl_api_timedelta_t (u8 *s, va_list *args); - uword unformat_vl_api_timedelta_t (unformat_input_t *input, va_list *args); - uword unformat_vl_api_timestamp_t (unformat_input_t *input, va_list *args); - u8 *format_vl_api_gbp_scope_t (u8 *s, va_list *args); - uword unformat_vl_api_gbp_scope_t (unformat_input_t *input, va_list *args); +uword unformat_ip4_address (unformat_input_t *input, va_list *args); +uword unformat_ip6_address (unformat_input_t *input, va_list *args); +u8 *format_ip6_address (u8 *s, va_list *args); +uword unformat_mac_address (unformat_input_t *input, va_list *args); +u8 *format_ip4_address (u8 *s, va_list *args); +u8 *format_vl_api_interface_index_t (u8 *s, va_list *args); +u8 *format_vl_api_timestamp_t (u8 *s, va_list *args); +u8 *format_vl_api_timedelta_t (u8 *s, va_list *args); +uword unformat_vl_api_timedelta_t (unformat_input_t *input, va_list *args); +uword unformat_vl_api_timestamp_t (unformat_input_t *input, va_list *args); +u8 *format_vl_api_gbp_scope_t (u8 *s, va_list *args); +uword unformat_vl_api_gbp_scope_t (unformat_input_t *input, va_list *args); - int vl_api_c_string_to_api_string (const char *buf, vl_api_string_t *str); - void vl_api_string_cJSON_AddToObject (cJSON *const object, - const char *const name, - vl_api_string_t *astr); +int vl_api_c_string_to_api_string (const char *buf, vl_api_string_t *str); +void vl_api_string_cJSON_AddToObject (cJSON *const object, + const char *const name, + vl_api_string_t *astr); - u8 *u8string_fromjson (cJSON *o, char *fieldname); - int u8string_fromjson2 (cJSON *o, char *fieldname, u8 *data); - int vl_api_u8_string_fromjson (cJSON *o, u8 *s, int len); +u8 *u8string_fromjson (cJSON *o, char *fieldname); +int u8string_fromjson2 (cJSON *o, char *fieldname, u8 *data); +int vl_api_u8_string_fromjson (cJSON *o, u8 *s, int len); #define foreach_vat2_tojson \ _(ip4_address) \ |