aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2022-01-13 18:53:10 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2022-09-23 19:00:00 +0200
commit36d18d2f55cdbc7d1b5ec52c41e4ea61b3489db4 (patch)
tree8b7def74030963d4b3ca562b5c30df1a1c18d8d7
parent7eb4a50b2cff704d84262d832d357c2dc58dcfcb (diff)
add trans.cc.codecs
-rw-r--r--include/osmocom/msc/transaction.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/osmocom/msc/transaction.h b/include/osmocom/msc/transaction.h
index 14b89bb81..0966627a3 100644
--- a/include/osmocom/msc/transaction.h
+++ b/include/osmocom/msc/transaction.h
@@ -8,6 +8,7 @@
#include <osmocom/msc/mncc.h>
#include <osmocom/msc/msc_a.h>
#include <osmocom/msc/debug.h>
+#include <osmocom/msc/codec_filter.h>
#include <osmocom/gsm/gsm0411_smc.h>
#include <osmocom/gsm/gsm0411_smr.h>
@@ -101,6 +102,8 @@ struct gsm_trans {
struct gsm_mncc msg; /* stores setup/disconnect/release message */
bool mncc_initiated; /* Whether an MNCC Release is necessary on failure */
struct osmo_lcls *lcls;
+ /* Track codec choices from BSS and remote call leg */
+ struct codec_filter codecs;
} cc;
struct {
struct gsm411_smc_inst smc_inst;