api: Cleanup APIs interface.api
[vpp.git] / src / vlibapi / api_types.h
index 759298e..04f84a5 100644 (file)
 #ifndef included_api_types_h
 #define included_api_types_h
 
+#include <stdbool.h>
+
 #include <vppinfra/types.h>
+#include <arpa/inet.h>
+#include <string.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
 
 /* VPP API string type */
 typedef struct
@@ -29,26 +38,14 @@ typedef struct
   u8 buf[0];
 } __attribute__ ((packed)) vl_api_string_t;
 
-static inline int
-vl_api_to_api_string (u32 len, const char *buf, vl_api_string_t * str)
-{
-  if (strncpy_s ((char *) str->buf, len, buf, len - 1) != 0)
-    len = 0;
-  str->length = clib_host_to_net_u32 (len);
-  return len + sizeof (u32);
-}
+extern int vl_api_to_api_string (u32 len, const char *buf, vl_api_string_t * str);
+extern int vl_api_vec_to_api_string (const u8 *vec, vl_api_string_t * str);
+extern u8 * vl_api_from_api_string (vl_api_string_t * astr);
+extern u32 vl_api_string_len (vl_api_string_t * astr);
+extern u8 * vl_api_from_api_to_vec (vl_api_string_t *astr);
 
-/* Return a C string from API string */
-static inline u8 *
-vl_api_from_api_string (vl_api_string_t * astr)
-{
-  return astr->buf;
-}
-
-static inline u32
-vl_api_string_len (vl_api_string_t * astr)
-{
-  return clib_net_to_host_u32 (astr->length);
+#ifdef __cplusplus
 }
+#endif
 
 #endif