blob: fb66df03d18b4a90aa8c8b2b446439f279601a1e [file] [log] [blame]
Philipp Maier39f62bb2017-04-09 12:32:51 +02001/* (C) 2017 by sysmocom s.f.m.c. GmbH
2 * All Rights Reserved
3 *
4 * Author: Philipp Maier
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21/* Create and start state machine which handles the reset/reset-ack procedure */
22void start_reset_fsm(struct bsc_msc_data *msc);
23
Martin Haukea29affd2019-11-13 22:10:41 +010024/* Confirm that we successfully received a reset acknowledge message */
Philipp Maier39f62bb2017-04-09 12:32:51 +020025void reset_ack_confirm(struct bsc_msc_data *msc);
26
27/* Report a failed connection */
28void report_conn_fail(struct bsc_msc_data *msc);
29
30/* Report a successful connection */
31void report_conn_success(struct bsc_msc_data *msc);
32
33/* Check if we have a connection to a specified msc */
34bool sccp_conn_ready(struct bsc_msc_data *msc);