blob: b8db686f1908084485c8ca01f99b2401b995c1bb [file] [log] [blame]
Holger Hans Peter Freyther3e8e0462010-09-15 22:29:25 +08001/*
2 * Data for the true BSC
3 *
4 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * (C) 2010 by On-Waves
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
24#ifndef _OSMO_MSC_DATA_H
25#define _OSMO_MSC_DATA_H
26
27#include "bsc_msc.h"
28
29struct osmo_msc_data {
Holger Hans Peter Freyther47b26012010-09-15 23:28:49 +080030 /* Connection data */
31 char *bsc_token;
32 int msc_port;
33 int msc_ip_dscp;
34 char *msc_ip;
35 int ping_timeout;
36 int pong_timeout;
Holger Hans Peter Freyther3e8e0462010-09-15 22:29:25 +080037 struct bsc_msc_connection *msc_con;
Holger Hans Peter Freyther47b26012010-09-15 23:28:49 +080038
39 /* rf ctl related bits */
40 char *ussd_grace_txt;
Holger Hans Peter Freyther3e8e0462010-09-15 22:29:25 +080041};
42
43#endif