diff options
author | Paul Atkins <patkins@graphiant.com> | 2021-12-01 13:13:16 +0000 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2022-02-16 11:29:21 +0000 |
commit | bf9918a7e0c6bf116b90780cbc2c111ca7995399 (patch) | |
tree | 2d81a8feeb8483ac86aaf082a826d3d2408df60f /src | |
parent | 6a51775d6cc3a4bf3189291f0d025238dbe7d72c (diff) |
ipfix-export: pass ipv4 addr to format fn for show
When the ipfix address was changed to be an ip_address instead of
an ip4_address the output when creating an exporter via the cli
should have been modified to take the address of the v4 part of
the addr.
Type: fix
Signed-off-by: Paul Atkins <patkins@graphiant.com>
Change-Id: I141456cd9092c861a4c4aefba4035dbde23efcd6
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/ipfix-export/flow_report.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/vnet/ipfix-export/flow_report.c b/src/vnet/ipfix-export/flow_report.c index 8a36a2f3363..e290973f900 100644 --- a/src/vnet/ipfix-export/flow_report.c +++ b/src/vnet/ipfix-export/flow_report.c @@ -843,9 +843,10 @@ set_ipfix_exporter_command_fn (vlib_main_t * vm, "fib index %d, path MTU %u, " "template resend interval %us, " "udp checksum %s", - format_ip4_address, exp->ipfix_collector, - format_ip4_address, exp->src_address, fib_index, path_mtu, - template_interval, udp_checksum ? "enabled" : "disabled"); + format_ip4_address, &exp->ipfix_collector.ip.ip4, + format_ip4_address, &exp->src_address.ip.ip4, fib_index, + path_mtu, template_interval, + udp_checksum ? "enabled" : "disabled"); else vlib_cli_output (vm, "IPFIX Collector is disabled"); |