aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/osmo_msc_data.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-14 20:38:06 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-11-15 20:06:50 +0100
commit620c2e678ac00831a425310194c8c8450318c134 (patch)
tree031caaa25ca26d4cc1c0e5aa0f0750e72a54b4c9 /openbsc/include/openbsc/osmo_msc_data.h
parentdbc698aef010abfb8efc4be310a6f9fe043cdb5a (diff)
bsc: Add thr audio module to send the MDCX message to the BTS
Diffstat (limited to 'openbsc/include/openbsc/osmo_msc_data.h')
-rw-r--r--openbsc/include/openbsc/osmo_msc_data.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/openbsc/include/openbsc/osmo_msc_data.h b/openbsc/include/openbsc/osmo_msc_data.h
index caf49ef19..5c769c1cd 100644
--- a/openbsc/include/openbsc/osmo_msc_data.h
+++ b/openbsc/include/openbsc/osmo_msc_data.h
@@ -29,10 +29,11 @@
#include <osmocore/timer.h>
struct osmo_bsc_rf;
+struct gsm_network;
struct gsm_audio_support {
- u_int8_t hr : 1,
- ver : 7;
+ uint8_t hr : 1,
+ ver : 7;
};
struct osmo_msc_data {
@@ -71,4 +72,6 @@ int osmo_bsc_msc_init(struct gsm_network *network);
int osmo_bsc_sccp_init(struct gsm_network *gsmnet);
int msc_queue_write(struct bsc_msc_connection *conn, struct msgb *msg, int proto);
+int osmo_bsc_audio_init(struct gsm_network *network);
+
#endif