aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/bsc/handover.h
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-09-04 15:15:32 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2017-09-06 16:26:13 +0200
commitc01647914b97ab8a1079330e36d0e1d024d3a804 (patch)
treedc22a90b524e2a5517805a8757016997db9eb12d /include/osmocom/bsc/handover.h
parent538635ad5d5564087d285eda042b0cad9610c70e (diff)
move include/openbsc to include/osmocom/bsc
Diffstat (limited to 'include/osmocom/bsc/handover.h')
-rw-r--r--include/osmocom/bsc/handover.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/osmocom/bsc/handover.h b/include/osmocom/bsc/handover.h
new file mode 100644
index 000000000..3fe71a28b
--- /dev/null
+++ b/include/osmocom/bsc/handover.h
@@ -0,0 +1,14 @@
+#ifndef _HANDOVER_H
+#define _HANDOVER_H
+
+struct gsm_subscriber_connection;
+
+int bsc_handover_start(struct gsm_lchan *old_lchan, struct gsm_bts *bts);
+
+/* clear any operation for this connection */
+void bsc_clear_handover(struct gsm_subscriber_connection *conn, int free_lchan);
+
+/* Return the old lchan or NULL. This is meant for audio handling */
+struct gsm_lchan *bsc_handover_pending(struct gsm_lchan *new_lchan);
+
+#endif /* _HANDOVER_H */