diff options
author | Neale Ranns <neale@graphiant.com> | 2021-05-21 09:47:08 +0000 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2021-05-25 14:34:57 +0000 |
commit | 6bb77dec7074e6b7b27d6bc94238bcddda375a66 (patch) | |
tree | 44316c04ad5870fa64acd595a074ed02de539613 /src/plugins/linux-cp/lcp_cli.c | |
parent | 01930f568a2472a3352ab80ea1d3b4cccf4ae0c7 (diff) |
linux-cp: A V2 variant of pair create API that returns the host
interface created
Type: improvement
Signed-off-by: Neale Ranns <neale@graphiant.com>
Change-Id: I31a83cd50513078895078bae3ae11372d351ddcd
Diffstat (limited to 'src/plugins/linux-cp/lcp_cli.c')
-rw-r--r-- | src/plugins/linux-cp/lcp_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/linux-cp/lcp_cli.c b/src/plugins/linux-cp/lcp_cli.c index 0231f67f835..cb874b1c023 100644 --- a/src/plugins/linux-cp/lcp_cli.c +++ b/src/plugins/linux-cp/lcp_cli.c @@ -93,7 +93,7 @@ lcp_itf_pair_create_command_fn (vlib_main_t *vm, unformat_input_t *input, 0, "Namespace name should be fewer than %d characters", LCP_NS_LEN); } - r = lcp_itf_pair_create (sw_if_index, host_if_name, host_if_type, ns); + r = lcp_itf_pair_create (sw_if_index, host_if_name, host_if_type, ns, NULL); vec_free (host_if_name); vec_free (ns); |