diff options
author | Eyal Bari <ebari@cisco.com> | 2017-03-15 08:23:42 +0200 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2017-03-15 12:44:00 +0000 |
commit | e101e1f52f1da71575588fac30b984a0e94fb5a7 (patch) | |
tree | 11fcadb6249f343b52a7957d612158edee9d9059 /src/vpp | |
parent | 3bde40778cc2bf5fab6b13d81eca0180f7d27af3 (diff) |
VXLAN:add hidden multicast interface check
and some refactoring
Change-Id: I99e3c5e782ce65cb9779ccc3a9a3151ef1429e07
Signed-off-by: Eyal Bari <ebari@cisco.com>
Diffstat (limited to 'src/vpp')
-rw-r--r-- | src/vpp/api/custom_dump.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/vpp/api/custom_dump.c b/src/vpp/api/custom_dump.c index 648ac5f3..a76840a2 100644 --- a/src/vpp/api/custom_dump.c +++ b/src/vpp/api/custom_dump.c @@ -1384,10 +1384,8 @@ static void *vl_api_vxlan_add_del_tunnel_t_print u8 *s; s = format (0, "SCRIPT: vxlan_add_del_tunnel "); - ip46_address_t src, dst; - - ip46_from_addr_buf (mp->is_ipv6, mp->dst_address, &dst); - ip46_from_addr_buf (mp->is_ipv6, mp->src_address, &src); + ip46_address_t src = to_ip46 (mp->is_ipv6, mp->dst_address); + ip46_address_t dst = to_ip46 (mp->is_ipv6, mp->src_address); u8 is_grp = ip46_address_is_multicast (&dst); char *dst_name = is_grp ? "group" : "dst"; |