summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Sardara <msardara@cisco.com>2019-07-05 14:00:44 +0000
committerGerrit Code Review <gerrit@fd.io>2019-07-05 14:00:44 +0000
commitd5bfd160f055834fc817422dba152b3714062892 (patch)
treea95572789a9862156f55a8bc9bf864eec9eef586
parent602c0673d3ae2731bee128fa8932b8467f3d7049 (diff)
parentc89255cfa7cc1f17043b496ed44eab0e6f66bdd3 (diff)
Merge "[HICN-239] Removed unused cli command for MapMe"
-rw-r--r--hicn-plugin/README.md7
-rw-r--r--hicn-plugin/src/cli.c73
2 files changed, 0 insertions, 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 <prefix> face <face_id> } | set strategy <strat
<strategy_id> :set a strategy for the corresponding prefix
```
-`hicn mapme`: enable and disable mapme.
-
-```
-hicn mapme {enable|disable|set <param> <value>}
-```
-
-
`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 <param> <value>}",
- .function = hicn_cli_mapme_command_fn,
-};
-
/* cli declaration for 'hicn pgen client' */
VLIB_CLI_COMMAND(hicn_cli_pgen_client_set_command, static)=
{