aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2022-02-23 16:23:32 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2022-02-28 11:55:21 +0100
commit985b906e6327c526cf9c044633bf3129669973bd (patch)
tree0cc8d2145d722b5e5772d8729f0c70ece116cc7e
parent82c5f968c56b02d9bf1e08a445e79ccee2c28ba3 (diff)
inter-BSC HO in: add Codec List (BSS Supported) IE to HO Req Ack
-rw-r--r--src/osmo-bsc/osmo_bsc_bssap.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/osmo-bsc/osmo_bsc_bssap.c b/src/osmo-bsc/osmo_bsc_bssap.c
index 50f53d6fd..44d3a7e23 100644
--- a/src/osmo-bsc/osmo_bsc_bssap.c
+++ b/src/osmo-bsc/osmo_bsc_bssap.c
@@ -1460,6 +1460,10 @@ int bsc_tx_bssmap_ho_request_ack(struct gsm_subscriber_connection *conn, struct
LOG_HO(conn, LOGL_ERROR, "Unable to compose Speech Codec (Chosen)\n");
return -EINVAL;
}
+
+ /* Codec list (BSS Supported) */
+ params.more_items = true;
+ gen_bss_supported_codec_list(&params.codec_list_bss_supported, conn->sccp.msc, new_lchan->ts->trx->bts);
}
rate_ctr_inc(rate_ctr_group_get_ctr(conn->sccp.msc->msc_ctrs, MSC_CTR_BSSMAP_TX_DT1_HANDOVER_RQST_ACKNOWLEDGE));