neels has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/18873 )
Change subject: vty: hide 'mscpool roundrobin next' ...................................................................... vty: hide 'mscpool roundrobin next' The 'mscpool roundrobin next' command is intended for use only by ttcn3 tests. Hide it. Change-Id: Ie8799b61b74cfb34acd5aa4aeb1fb69ae7d216e2 --- M src/osmo-bsc/osmo_bsc_vty.c 1 file changed, 8 insertions(+), 7 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/73/18873/1 diff --git a/src/osmo-bsc/osmo_bsc_vty.c b/src/osmo-bsc/osmo_bsc_vty.c index 71dff1b..2c43fd2 100644 --- a/src/osmo-bsc/osmo_bsc_vty.c +++ b/src/osmo-bsc/osmo_bsc_vty.c @@ -939,13 +939,14 @@ return CMD_SUCCESS; } -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") +/* Hidden since it exists only for use by ttcn3 tests */ +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; -- To view, visit https://gerrit.osmocom.org/c/osmo-bsc/+/18873 To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings Gerrit-Project: osmo-bsc Gerrit-Branch: master Gerrit-Change-Id: Ie8799b61b74cfb34acd5aa4aeb1fb69ae7d216e2 Gerrit-Change-Number: 18873 Gerrit-PatchSet: 1 Gerrit-Owner: neels <nhofm...@sysmocom.de> Gerrit-MessageType: newchange