diff options
author | Michael Qiu <qdy220091330@gmail.com> | 2016-07-07 11:28:27 +0800 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2016-07-29 13:01:37 +0000 |
commit | 2828efcfb96be56f0ef894e2df1e309670a2283a (patch) | |
tree | e4dcb34ce60a7d6cef9f6e0afe5c124557a535a6 /plugins | |
parent | a2f27af2144636db88b4937155ad9c86e82f2b50 (diff) |
plugin/vcgn:Remove local defined ip4_interface_first_address
Function ip4_interface_first_address has been defined in
vnet/ip/ip4.h, and result an compile issue.
CC vcgn/cnat_ipv4_icmp_error_outside_input.lo
CC vcgn/cnat_logging.lo
vcgn/cnat_logging.c:361:1: error: conflicting types for 'ip4_interface_first_address'
ip4_interface_first_address (ip4_main_t * im, u32 sw_if_index)
^
In file included from /usr/include/vnet/ip/ip.h:57:0,
from vcgn/cnat_logging.c:24:
/usr/include/vnet/ip/ip4.h:390:1: note: previous declaration of 'ip4_interface_first_address' was here
ip4_interface_first_address (ip4_main_t * im, u32 sw_if_index,
^
make: *** [vcgn/cnat_logging.lo] Error 1
Change-Id: I1165c9bb778263c195ed34ab438dcb27dfd207bc
Signed-off-by: Michael Qiu <qiudayu@chinac.com>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/vcgn-plugin/vcgn/cnat_logging.c | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/plugins/vcgn-plugin/vcgn/cnat_logging.c b/plugins/vcgn-plugin/vcgn/cnat_logging.c index 50805d118ae..71f156a9c14 100644 --- a/plugins/vcgn-plugin/vcgn/cnat_logging.c +++ b/plugins/vcgn-plugin/vcgn/cnat_logging.c @@ -356,24 +356,6 @@ u16 cnat_nfv9_pad_end_of_record_length (u16 record_length) return ((record_length + pad_value) & (~pad_value)); } -/* get first interface address */ -static ip4_address_t * -ip4_interface_first_address (ip4_main_t * im, u32 sw_if_index) -{ - ip_lookup_main_t * lm = &im->lookup_main; - ip_interface_address_t * ia = 0; - ip4_address_t * result = 0; - - foreach_ip_interface_address (lm, ia, sw_if_index, - 1 /* honor unnumbered */, - ({ - ip4_address_t * a = ip_interface_address_get_address (lm, ia); - result = a; - break; - })); - return result; -} - void fill_ip_n_udp_hdr (u32 ipv4_addr, u16 port, cnat_nfv9_logging_info_t *nfv9_logging_info) { @@ -403,7 +385,7 @@ void fill_ip_n_udp_hdr (u32 ipv4_addr, u16 port, ip_header->dest_addr = clib_host_to_net_u32(ipv4_addr); ip_length = vlib_buffer_length_in_chain (vm, b0); ip_header->total_len_bytes = clib_host_to_net_u16(pkt_len); - ia0 = ip4_interface_first_address(&ip4_main, nfv9_logging_info->i_vrf_id); + ia0 = ip4_interface_first_address(&ip4_main, nfv9_logging_info->i_vrf_id, 0); ip_header->src_addr = ia0->as_u32; udp_header->src_port = clib_host_to_net_u16(src_port); udp_header->dest_port = clib_host_to_net_u16(port); |