blob: ddaad3ba708377ef8a1df666ac16763efc486228 [file] [log] [blame]
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +08001/* Routines to talk to the MSC using the IPA Protocol */
2/*
3 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Hans Peter Freytherdf6143a2010-06-15 18:46:56 +08004 * (C) 2010 by On-Waves
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +08005 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01008 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +080010 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +080016 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +080019 *
20 */
21
22#ifndef BSC_MSC_H
23#define BSC_MSC_H
24
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010025#include <osmocom/core/write_queue.h>
26#include <osmocom/core/timer.h>
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +080027
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080028struct bsc_msc_connection {
29 struct write_queue write_queue;
30 int is_connected;
Holger Hans Peter Freyther8bdcf552010-06-15 18:50:48 +080031 int is_authenticated;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +080032 int first_contact;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080033 const char *ip;
34 int port;
Holger Hans Peter Freytherca999a92010-06-15 18:52:38 +080035 int prio;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080036
37 void (*connection_loss) (struct bsc_msc_connection *);
38 void (*connected) (struct bsc_msc_connection *);
39 struct timer_list reconnect_timer;
Holger Hans Peter Freythere47a91b2010-05-05 22:48:56 +080040 struct timer_list timeout_timer;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080041};
42
Holger Hans Peter Freytherca999a92010-06-15 18:52:38 +080043struct bsc_msc_connection *bsc_msc_create(const char *ip, int port, int prio);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080044int bsc_msc_connect(struct bsc_msc_connection *);
45void bsc_msc_schedule_connect(struct bsc_msc_connection *);
46
47void bsc_msc_lost(struct bsc_msc_connection *);
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +080048
Holger Hans Peter Freytherf76e7ef2010-06-15 18:52:05 +080049struct msgb *bsc_msc_id_get_resp(const char *token);
50
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +080051#endif