aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/handover.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-06-30 12:58:14 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-06-30 13:02:08 +0800
commitf2553a6c3a9c677f71fd7f123c54d80a915f7a0a (patch)
tree51d5c3b09e5f367be10225b55335ae427afae705 /openbsc/include/openbsc/handover.h
parent0610947f4cb0efd7f68e3e0e8df3663f0cdd64e5 (diff)
handover: Call bsc_handover_clear from gsm0808_clear
The bsc_handover_clear will release an in-progress handover and free the lchana and the data associated with this handover
Diffstat (limited to 'openbsc/include/openbsc/handover.h')
-rw-r--r--openbsc/include/openbsc/handover.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/handover.h b/openbsc/include/openbsc/handover.h
index 8ab1b0642..5d710576c 100644
--- a/openbsc/include/openbsc/handover.h
+++ b/openbsc/include/openbsc/handover.h
@@ -1,8 +1,14 @@
#ifndef _HANDOVER_H
#define _HANDOVER_H
+
+struct gsm_subscriber_connection;
+
/* Hand over the specified logical channel to the specified new BTS.
* This is the main entry point for the actual handover algorithm,
* after it has decided it wants to initiate HO to a specific BTS */
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);
+
#endif /* _HANDOVER_H */