aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/bsc/handover.h
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-02-12 16:56:41 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2018-02-16 16:11:16 +0100
commit6dff51d583bbdd2beb9bbbc27ba65abf1df99a9c (patch)
tree8152cb6f65db3eaf66edf07dc7051783134cead4 /include/osmocom/bsc/handover.h
parentef497b86ba61a30a62aee99f09692a841227b5ad (diff)
HO: add new_lchan_type arg to bsc_handover_start()
Upcoming handover_decision_2 will want to be able to handover to a differing TCH type, hence add a parameter to bsc_handover_start(); adjust current callers to pass the old lchan type. Tweak the 'bts' argument to 'new_bts'. Change-Id: I4478ebcaada00897cc38c5a299e07661139ed3c5
Diffstat (limited to 'include/osmocom/bsc/handover.h')
-rw-r--r--include/osmocom/bsc/handover.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/osmocom/bsc/handover.h b/include/osmocom/bsc/handover.h
index a9349eeda..bbb448c9d 100644
--- a/include/osmocom/bsc/handover.h
+++ b/include/osmocom/bsc/handover.h
@@ -4,7 +4,8 @@ struct gsm_lchan;
struct gsm_bts;
struct gsm_subscriber_connection;
-int bsc_handover_start(struct gsm_lchan *old_lchan, struct gsm_bts *bts);
+int bsc_handover_start(struct gsm_lchan *old_lchan, struct gsm_bts *new_bts,
+ enum gsm_chan_t new_lchan_type);
void bsc_clear_handover(struct gsm_subscriber_connection *conn, int free_lchan);
struct gsm_lchan *bsc_handover_pending(struct gsm_lchan *new_lchan);