blob: 0adbd266e38b1168a096693cbb0a2484a9c0bb49 [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 Freythere1880102011-04-23 23:31:31 +020028struct bsc_msc_dest {
29 struct llist_head list;
30
31 char *ip;
32 int port;
33 int dscp;
34};
35
36
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080037struct bsc_msc_connection {
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +020038 struct osmo_wqueue write_queue;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080039 int is_connected;
Holger Hans Peter Freyther8bdcf552010-06-15 18:50:48 +080040 int is_authenticated;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +080041 int first_contact;
Holger Hans Peter Freythere1880102011-04-23 23:31:31 +020042
43 struct llist_head *dests;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080044
Holger Hans Peter Freytherc1a86872013-09-02 13:07:45 +020045 const char *name;
46
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080047 void (*connection_loss) (struct bsc_msc_connection *);
48 void (*connected) (struct bsc_msc_connection *);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +020049 struct osmo_timer_list reconnect_timer;
50 struct osmo_timer_list timeout_timer;
Jacob Erlbecke8278122014-03-31 13:42:11 +020051
52 struct msgb *pending_msg;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080053};
54
Holger Hans Peter Freythere1880102011-04-23 23:31:31 +020055struct bsc_msc_connection *bsc_msc_create(void *ctx, struct llist_head *dest);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080056int bsc_msc_connect(struct bsc_msc_connection *);
57void bsc_msc_schedule_connect(struct bsc_msc_connection *);
58
59void bsc_msc_lost(struct bsc_msc_connection *);
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +080060
Holger Hans Peter Freytherf76e7ef2010-06-15 18:52:05 +080061struct msgb *bsc_msc_id_get_resp(const char *token);
62
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +080063#endif