aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/osmo_msc_data.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-03 13:55:49 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-11-03 13:56:27 +0100
commit7bf66c5a6ee085bb84e5f1de12725d7006cf6a3c (patch)
tree3c0a02a2a24e52f2b0ad55daf742755d88c57660 /openbsc/include/openbsc/osmo_msc_data.h
parentfe16622bf57d1c2758348eece72687a74f9cf7ea (diff)
bsc: Add the audio codec list command to list preferred codecs
Diffstat (limited to 'openbsc/include/openbsc/osmo_msc_data.h')
-rw-r--r--openbsc/include/openbsc/osmo_msc_data.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/osmo_msc_data.h b/openbsc/include/openbsc/osmo_msc_data.h
index b10301959..2e8f34a8c 100644
--- a/openbsc/include/openbsc/osmo_msc_data.h
+++ b/openbsc/include/openbsc/osmo_msc_data.h
@@ -30,6 +30,11 @@
struct osmo_bsc_rf;
+struct gsm_audio_support {
+ u_int8_t hr : 1,
+ ver : 7;
+};
+
struct osmo_msc_data {
/* Connection data */
char *bsc_token;
@@ -45,6 +50,11 @@ struct osmo_msc_data {
int rtp_payload;
int rtp_base;
+ /* audio codecs */
+ struct gsm_audio_support **audio_support;
+ int audio_length;
+
+
/* mgcp agent */
struct write_queue mgcp_agent;