aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2020-06-16 23:58:25 +0200
committerlaforge <laforge@osmocom.org>2020-06-21 16:09:11 +0000
commitdd4c93b3f99534b5a1b4a1000eddddfd6a9de7fa (patch)
tree2c371de87d8e8027f6105f177afae69b0b33402f
parent0415a5c5fa15bbb86e882bd5b81d14e0d6993530 (diff)
vty: hide 'mscpool roundrobin next'
The 'mscpool roundrobin next' command is intended for use only by ttcn3 tests. Hide it. Change-Id: Ie8799b61b74cfb34acd5aa4aeb1fb69ae7d216e2
-rw-r--r--src/osmo-bsc/bsc_vty.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/osmo-bsc/bsc_vty.c b/src/osmo-bsc/bsc_vty.c
index 1ab10d3bc..9896bff71 100644
--- a/src/osmo-bsc/bsc_vty.c
+++ b/src/osmo-bsc/bsc_vty.c
@@ -6286,13 +6286,13 @@ DEFUN(show_nri, show_nri_cmd,
}
/* Hidden since it exists only for use by ttcn3 tests */
-DEFUN(mscpool_roundrobin_next, mscpool_roundrobin_next_cmd,
- "mscpool roundrobin next " MSC_NR_RANGE,
- "MSC pooling: load balancing across multiple MSCs.\n"
- "Adjust current state of the MSC round-robin algorithm (for testing).\n"
- "Set the MSC nr to direct the next new subscriber to (for testing).\n"
- "MSC number, as in the config file; if the number does not exist,"
- " the round-robin continues to the next valid number.\n")
+DEFUN_HIDDEN(mscpool_roundrobin_next, mscpool_roundrobin_next_cmd,
+ "mscpool roundrobin next " MSC_NR_RANGE,
+ "MSC pooling: load balancing across multiple MSCs.\n"
+ "Adjust current state of the MSC round-robin algorithm (for testing).\n"
+ "Set the MSC nr to direct the next new subscriber to (for testing).\n"
+ "MSC number, as in the config file; if the number does not exist,"
+ " the round-robin continues to the next valid number.\n")
{
bsc_gsmnet->mscs_round_robin_next_nr = atoi(argv[0]);
return CMD_SUCCESS;