aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-03-04 14:52:12 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-03-06 23:05:13 +0100
commitcee930e3f5426520627fb86f870835b09fa030a4 (patch)
tree3e22530c17acf4911ca9e81c901c499fc7956aa1
parent6fbff9e5eb8f0c294c6ca8f27488678eba9f8b4b (diff)
DUMMY: Add a command to start a silent call
-rw-r--r--openbsc/src/osmo-nitb/ctrl_commands_dummy.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsc/src/osmo-nitb/ctrl_commands_dummy.c b/openbsc/src/osmo-nitb/ctrl_commands_dummy.c
index 042cd606d..dd466ca22 100644
--- a/openbsc/src/osmo-nitb/ctrl_commands_dummy.c
+++ b/openbsc/src/osmo-nitb/ctrl_commands_dummy.c
@@ -44,6 +44,7 @@ int dummy_verify(struct ctrl_cmd *cmd, const char *value, void *data)
/* ROOT related commands below here */
DUMMY_COMMAND(net_trap_meas_enable, "trap-measurement-reports-enable");
+DUMMY_COMMAND(net_silent_call, "silent-call-start");
/* BTS related commands below here */
DUMMY_COMMAND(bts_drop, "drop");
@@ -58,6 +59,7 @@ int bsc_ctrl_cmds_install_dummies(void)
int rc = 0;
rc |= ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_net_trap_meas_enable);
+ rc |= ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_net_silent_call);
rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_drop);
rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rflock);