X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fip%2Fip_types_api.h;h=2035dbab6ac85e49bf978dcce48384f7b4da6aa0;hb=282872127bbeee6ae59ab3f885c09bad601ee0cc;hp=1bc899a4588c9251b707d9c90492f9f8ff4517d8;hpb=d0df49f26eabf2f534b567f3370e50c4e804aeea;p=vpp.git diff --git a/src/vnet/ip/ip_types_api.h b/src/vnet/ip/ip_types_api.h index 1bc899a4588..2035dbab6ac 100644 --- a/src/vnet/ip/ip_types_api.h +++ b/src/vnet/ip/ip_types_api.h @@ -23,33 +23,47 @@ #include #include #include +#include +#include /** - * Forward declarations so we need not #include the API definitions here + * These enum decode/encodes use 'int' as the type for the enum because + * one cannot forward declare an enum */ -struct _vl_api_address; -struct _vl_api_prefix; -struct _vl_api_mprefix; +extern int ip_address_family_decode (int _af, ip_address_family_t * out); +extern int ip_address_family_encode (ip_address_family_t af); +extern int ip_proto_decode (int _af, ip_protocol_t * out); +extern int ip_proto_encode (ip_protocol_t af); +extern ip_dscp_t ip_dscp_decode (u8 _dscp); +extern u8 ip_dscp_encode (ip_dscp_t dscp); -extern ip46_type_t ip_address_decode (const struct _vl_api_address *in, +/** + * Decode/Encode for struct/union types + */ +extern ip46_type_t ip_address_decode (const vl_api_address_t * in, ip46_address_t * out); extern void ip_address_encode (const ip46_address_t * in, - ip46_type_t type, struct _vl_api_address *out); + ip46_type_t type, vl_api_address_t * out); +extern void ip_address_decode2 (const vl_api_address_t * in, + ip_address_t * out); +extern void ip_address_encode2 (const ip_address_t * in, + vl_api_address_t * out); +extern void ip6_address_encode (const ip6_address_t * in, + vl_api_ip6_address_t out); +extern void ip6_address_decode (const vl_api_ip6_address_t in, + ip6_address_t * out); +extern void ip4_address_encode (const ip4_address_t * in, + vl_api_ip4_address_t out); +extern void ip4_address_decode (const vl_api_ip4_address_t in, + ip4_address_t * out); -extern void ip_prefix_decode (const struct _vl_api_prefix *in, - fib_prefix_t * out); -extern void ip_prefix_encode (const fib_prefix_t * in, - struct _vl_api_prefix *out); +extern void ip_prefix_decode (const vl_api_prefix_t * in, fib_prefix_t * out); +extern void ip_prefix_encode (const fib_prefix_t * in, vl_api_prefix_t * out); -extern void ip_mprefix_decode (const struct _vl_api_mprefix *in, +extern void ip_mprefix_decode (const vl_api_mprefix_t * in, mfib_prefix_t * out); extern void ip_mprefix_encode (const mfib_prefix_t * in, - struct _vl_api_mprefix *out); - -extern u8 *format_vl_api_address (u8 * s, va_list * args); -extern u8 *format_vl_api_address_union (u8 * s, va_list * args); -extern u8 *format_vl_api_prefix (u8 * s, va_list * args); -extern u8 *format_vl_api_mprefix (u8 * s, va_list * args); + vl_api_mprefix_t * out); #endif