aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc/gsm_08_08.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/osmo-bsc/gsm_08_08.c')
-rw-r--r--src/osmo-bsc/gsm_08_08.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/osmo-bsc/gsm_08_08.c b/src/osmo-bsc/gsm_08_08.c
index e7ef72811..05c703a47 100644
--- a/src/osmo-bsc/gsm_08_08.c
+++ b/src/osmo-bsc/gsm_08_08.c
@@ -515,6 +515,11 @@ int bsc_compl_l3(struct gsm_subscriber_connection *conn, struct msgb *msg, uint1
if (gscon_is_aoip(conn)) {
gen_bss_supported_codec_list(&scl, msc, bts);
+ int i;
+ for (i = 0; i < scl->len; i++) {
+ LOGP(DHODEC, LOGL_DEBUG, "xxx Compl L3 codec list %d/%d %s\n", i, scl->len,
+ gsm0808_speech_codec_type_name(scl->codec[i].type));
+ }
if (scl.len > 0)
resp = gsm0808_create_layer3_2(msg, cgi, &scl);
else {