From c89255cfa7cc1f17043b496ed44eab0e6f66bdd3 Mon Sep 17 00:00:00 2001 From: Alberto Compagno Date: Fri, 5 Jul 2019 11:37:31 +0200 Subject: [HICN-239] Removed unused cli command for MapMe Change-Id: I338ca1856538e9b2d3723c54ca2ca6949568a264 Signed-off-by: Alberto Compagno --- hicn-plugin/README.md | 7 ----- hicn-plugin/src/cli.c | 73 --------------------------------------------------- 2 files changed, 80 deletions(-) diff --git a/hicn-plugin/README.md b/hicn-plugin/README.md index 7a7b02271..2208f5ada 100644 --- a/hicn-plugin/README.md +++ b/hicn-plugin/README.md @@ -248,13 +248,6 @@ hicn fib {{add | delete } prefix face } | set strategy :set a strategy for the corresponding prefix ``` -`hicn mapme`: enable and disable mapme. - -``` -hicn mapme {enable|disable|set } -``` - - `hicn pgen client`: set an vpp forwarder as an hicn packet generator client ``` diff --git a/hicn-plugin/src/cli.c b/hicn-plugin/src/cli.c index 54344bd7b..8af56dcba 100644 --- a/hicn-plugin/src/cli.c +++ b/hicn-plugin/src/cli.c @@ -34,7 +34,6 @@ #include "route.h" #include "punt.h" #include "hicn_api.h" -#include "mapme.h" extern ip_version_t ipv4; extern ip_version_t ipv6; @@ -710,71 +709,6 @@ hicn_cli_punting_command_fn (vlib_main_t * vm, unformat_input_t * main_input, (ret)); } -static clib_error_t * -hicn_cli_mapme_command_fn (vlib_main_t * vm, unformat_input_t * main_input, - vlib_cli_command_t * cmd) -{ - hicn_mgmt_mapme_op_e mapme_op = HICN_MGMT_MAPME_OP_NONE; - unsigned int subnet_mask = 0; - ip46_address_t prefix; - u32 sw_if_index = ~0; - int ret = 0; - vnet_main_t *vnm = NULL; - - vnm = vnet_get_main (); - - unformat_input_t _line_input, *line_input = &_line_input; - if (!unformat_user (main_input, unformat_line_input, line_input)) - { - return (0); - } - while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) - { - if (unformat (line_input, "add")) - { - mapme_op = HICN_MGMT_MAPME_OP_CREATE; - } - else if (unformat (line_input, "delete")) - { - mapme_op = HICN_MGMT_MAPME_OP_DELETE; - } - else if (unformat (line_input, "intfc %U", - unformat_vnet_sw_interface, vnm, &sw_if_index)) - {; - } - else if (unformat - (line_input, "prefix %U/%d", unformat_ip46_address, - &prefix, IP46_TYPE_ANY, &subnet_mask)) - {; - } - else - { - return (clib_error_return (0, "invalid option")); - } - } - - if (mapme_op == HICN_MGMT_MAPME_OP_CREATE - && (ip46_address_is_zero (&prefix) || sw_if_index == ~0)) - { - return (clib_error_return - (0, "Please specify valid prefix and interface")); - } - else if ((mapme_op == HICN_MGMT_MAPME_OP_DELETE) && - ip46_address_is_zero (&prefix)) - { - return (clib_error_return - (0, "Please specify valid prefix and optionally an interface")); - } - else if (mapme_op == HICN_MGMT_MAPME_OP_NONE) - { - return (clib_error_return - (0, "Please specify valid operation, add or delete")); - } - return (ret == HICN_ERROR_NONE) ? clib_error_return (0, "Punting %s", - get_error_string (ret)) - : clib_error_return (0, get_error_string (ret)); -} - /* * cli handler for 'pgen' */ @@ -1226,13 +1160,6 @@ VLIB_CLI_COMMAND(hicn_cli_punting_command, static)= .function = hicn_cli_punting_command_fn, }; -VLIB_CLI_COMMAND(hicn_cli_mapme_command, static)= -{ - .path = "hicn mapme", - .short_help = "hicn mapme {enable|disable|set }", - .function = hicn_cli_mapme_command_fn, -}; - /* cli declaration for 'hicn pgen client' */ VLIB_CLI_COMMAND(hicn_cli_pgen_client_set_command, static)= { -- cgit 1.2.3-korg