diff options
author | Damjan Marion <damarion@cisco.com> | 2022-03-23 17:36:56 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-03-23 18:40:16 +0000 |
commit | f87acfaf739f7b6361d6299549a897b03b0cc8c6 (patch) | |
tree | 6107b984b0a4ae9b6365eb08e307b377b4266ba5 /src/plugins/hs_apps/http_cli.c | |
parent | ba465b970e88d02467838bd9c272cb6d5cd653ec (diff) |
vppinfra: change vlib_register_node so it takes format string for node name
This allows specifying both c string and vector for node name
and removes need for crafting temporary string.
Type: improvement
Change-Id: I0b016cd70aeda0f68eb6f9171c5152f303be7369
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/hs_apps/http_cli.c')
-rw-r--r-- | src/plugins/hs_apps/http_cli.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/plugins/hs_apps/http_cli.c b/src/plugins/hs_apps/http_cli.c index a4698c52caf..fec1427994c 100644 --- a/src/plugins/hs_apps/http_cli.c +++ b/src/plugins/hs_apps/http_cli.c @@ -262,7 +262,6 @@ alloc_cli_process (hcs_cli_args_t *args) vlib_main_t *vm = hcm->vlib_main; hcs_cli_args_t **save_args; vlib_node_t *n; - char *name; uword l; l = vec_len (hcm->free_http_cli_process_node_indices); @@ -281,10 +280,7 @@ alloc_cli_process (hcs_cli_args_t *args) .runtime_data_bytes = sizeof (void *), }; - name = (char *) format (0, "http-cli-%d", l); - r.name = name; - vlib_register_node (vm, &r); - vec_free (name); + vlib_register_node (vm, &r, "http-cli-%d", l); n = vlib_get_node (vm, r.index); } |