diff options
author | Jon Loeliger <jdl@netgate.com> | 2022-08-17 12:08:31 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@netgate.com> | 2022-08-19 10:44:26 -0500 |
commit | 5b88feeb7f81905df0cffc5d7cb372c98cfa949e (patch) | |
tree | a010a06b274b237cdbf1d5d18b3d2881aa403c02 /src/plugins/nat/nat44-ei/nat44_ei_cli.c | |
parent | c428fd5d9476baba02edc0a10552719460e85b1e (diff) |
nat: simplify per-protocol code by using an array
rather than using obfuscated macro hacery, simplify
the per-protocol data management by directly using
an array of NAT protocol types.
Type: refactor
Signed-off-by: Jon Loeliger <jdl@netgate.com>
Change-Id: I6fe987556ac9f402f8d490da0740e2b91440304c
Diffstat (limited to 'src/plugins/nat/nat44-ei/nat44_ei_cli.c')
-rw-r--r-- | src/plugins/nat/nat44-ei/nat44_ei_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/nat/nat44-ei/nat44_ei_cli.c b/src/plugins/nat/nat44-ei/nat44_ei_cli.c index 2fe01b07c9e..75c95179b40 100644 --- a/src/plugins/nat/nat44-ei/nat44_ei_cli.c +++ b/src/plugins/nat/nat44-ei/nat44_ei_cli.c @@ -841,7 +841,7 @@ nat44_ei_show_addresses_command_fn (vlib_main_t *vm, unformat_input_t *input, else vlib_cli_output (vm, " tenant VRF independent"); #define _(N, i, n, s) \ - vlib_cli_output (vm, " %d busy %s ports", ap->busy_##n##_ports, s); + vlib_cli_output (vm, " %d busy %s ports", ap->busy_ports[i], s); foreach_nat_protocol #undef _ } |