blob: 9d9a90b84a36144e424023b86a59eabc1fbf379e [file] [log] [blame]
Jonathan Santos03fd8d02011-05-25 13:54:02 -04001#ifndef _HANDOVER_H
2#define _HANDOVER_H
3
4struct gsm_subscriber_connection;
5
6/* Hand over the specified logical channel to the specified new BTS.
7 * This is the main entry point for the actual handover algorithm,
8 * after it has decided it wants to initiate HO to a specific BTS */
9int bsc_handover_start(struct gsm_lchan *old_lchan, struct gsm_bts *bts);
10
11/* clear any operation for this connection */
12void bsc_clear_handover(struct gsm_subscriber_connection *conn, int free_lchan);
13
14#endif /* _HANDOVER_H */