X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fcnat%2Fcnat_snat.c;h=f3951cb72449354642cf002a747c7a016271317f;hb=e697caf9f84408fd7e2caa9bed58946f068e4c9c;hp=2f6a6314c5b7f63bee3ea9f2f032e97e1ea43e01;hpb=5c721baeb192a20da1d9fb332366d5a5b460b644;p=vpp.git diff --git a/src/plugins/cnat/cnat_snat.c b/src/plugins/cnat/cnat_snat.c index 2f6a6314c5b..f3951cb7244 100644 --- a/src/plugins/cnat/cnat_snat.c +++ b/src/plugins/cnat/cnat_snat.c @@ -119,11 +119,17 @@ static clib_error_t * cnat_set_snat (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { + unformat_input_t _line_input, *line_input = &_line_input; + clib_error_t *e = 0; ip_address_t addr; - while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) + /* Get a line of input. */ + if (!unformat_user (input, unformat_line_input, line_input)) + return 0; + + while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { - if (unformat (input, "%U", unformat_ip_address, &addr)) + if (unformat (line_input, "%U", unformat_ip_address, &addr)) { if (ip_addr_version (&addr) == AF_IP4) clib_memcpy (&cnat_main.snat_ip4, &ip_addr_v4 (&addr), @@ -133,18 +139,24 @@ cnat_set_snat (vlib_main_t * vm, sizeof (ip6_address_t)); } else - return (clib_error_return (0, "unknown input '%U'", - format_unformat_error, input)); + { + e = clib_error_return (0, "unknown input '%U'", + format_unformat_error, input); + goto done; + } } - return (NULL); +done: + unformat_free (line_input); + + return (e); } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (cnat_set_snat_command, static) = { .path = "cnat snat with", - .short_help = "cnat snat with [ip]", + .short_help = "cnat snat with [][]", .function = cnat_set_snat, }; /* *INDENT-ON* */