aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/osmo_msc_data.h
diff options
context:
space:
mode:
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;