diff options
author | Ole Troan <ot@cisco.com> | 2018-12-16 23:44:54 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-12-17 08:48:24 +0000 |
commit | d6e9aecfd67ebfd012873eb24b72221f13e8f089 (patch) | |
tree | c5ccdf2a6b130f57c2f12873ede595e8e38b4fc5 /src/vlibapi | |
parent | 3c7d4f9e1f54ec6627795b64525f182e2cda7490 (diff) |
String type: Not include \0 in show_version
The string type does not include the \0 in strings.
Change-Id: I869f438b84880df40a018e43b4510194d84ce0fe
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'src/vlibapi')
-rw-r--r-- | src/vlibapi/api_types.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vlibapi/api_types.h b/src/vlibapi/api_types.h index ffcd24d12b2..8a86612f0fb 100644 --- a/src/vlibapi/api_types.h +++ b/src/vlibapi/api_types.h @@ -50,4 +50,10 @@ vl_api_string_len (vl_api_string_t * astr) return clib_net_to_host_u32 (astr->length); } +static inline char * +vl_api_from_api_string_c (vl_api_string_t *astr) +{ + return strndup((char *)astr->buf, clib_net_to_host_u32(astr->length)); +} + #endif |