aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-03-04 12:36:07 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-04-22 09:09:33 +0200
commitf0fd5d1b58065ce9f7f8c865d1f2b2fc9641aed5 (patch)
tree00ab02dfba879994fc01bf1679062ce077b212b8
parent81efe7a7f9f26f971620cb9f8257805125a7015d (diff)
DUMMY: Create a dummy for a handover command for the BTS
-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 d56cbff80..042cd606d 100644
--- a/openbsc/src/osmo-nitb/ctrl_commands_dummy.c
+++ b/openbsc/src/osmo-nitb/ctrl_commands_dummy.c
@@ -48,6 +48,7 @@ DUMMY_COMMAND(net_trap_meas_enable, "trap-measurement-reports-enable");
/* BTS related commands below here */
DUMMY_COMMAND(bts_drop, "drop");
DUMMY_COMMAND(bts_rflock, "rflock");
+DUMMY_COMMAND(bts_handover_imsi, "handover-subscriber-imsi");
/* TRX related commands below here */
DUMMY_COMMAND(trx_drop, "drop");
@@ -60,6 +61,7 @@ int bsc_ctrl_cmds_install_dummies(void)
rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_drop);
rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rflock);
+ rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_handover_imsi);
rc |= ctrl_cmd_install(CTRL_NODE_TRX, &cmd_trx_drop);
rc |= ctrl_cmd_install(CTRL_NODE_TRX, &cmd_trx_rflock);