From 14e00f8f66faf0c1f551d1d5e4527c51177d6dc8 Mon Sep 17 00:00:00 2001 From: Jacob Erlbeck Date: Fri, 27 Nov 2015 18:10:39 +0100 Subject: edge: Extend gprs_rlcmac_dl_tbf::handle by egprs_ms_class The multislot (MS) class and the EGPRS MS class can also be passed via BSSGP in an MS Radio Access Capability element which can optionally be contained in a DL-UNITDATA PDU. While this case is fully supported for GPRS, the EGPRS MS class in BSSGP messages is ignored. This commit extends gprs_rlcmac_dl_tbf::handle to pass the EGPRS MS class, too. Note, that the EGPRS class is not yet taken from the CSN.1 RA capability and is always set to 0. Note also, that append_data still uses ms_class only. Sponsored-by: On-Waves ehf --- tests/tbf/TbfTest.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests') diff --git a/tests/tbf/TbfTest.cpp b/tests/tbf/TbfTest.cpp index 5ec93573..66fa9825 100644 --- a/tests/tbf/TbfTest.cpp +++ b/tests/tbf/TbfTest.cpp @@ -450,7 +450,7 @@ static void test_tbf_exhaustion() snprintf(imsi, sizeof(imsi), "001001%09d", i); - rc = gprs_rlcmac_dl_tbf::handle(bts, tlli, 0, imsi, ms_class, + rc = gprs_rlcmac_dl_tbf::handle(bts, tlli, 0, imsi, ms_class, 0, delay_csec, buf, sizeof(buf)); if (rc < 0) @@ -488,7 +488,7 @@ static void test_tbf_dl_llc_loss() /* Handle LLC frame 1 */ memset(buf, 1, sizeof(buf)); - rc = gprs_rlcmac_dl_tbf::handle(bts, tlli, 0, imsi, ms_class, + rc = gprs_rlcmac_dl_tbf::handle(bts, tlli, 0, imsi, ms_class, 0, delay_csec, buf, sizeof(buf)); OSMO_ASSERT(rc >= 0); @@ -498,7 +498,7 @@ static void test_tbf_dl_llc_loss() /* Handle LLC frame 2 */ memset(buf, 2, sizeof(buf)); - rc = gprs_rlcmac_dl_tbf::handle(bts, tlli, 0, imsi, ms_class, + rc = gprs_rlcmac_dl_tbf::handle(bts, tlli, 0, imsi, ms_class, 0, delay_csec, buf, sizeof(buf)); OSMO_ASSERT(rc >= 0); @@ -507,7 +507,7 @@ static void test_tbf_dl_llc_loss() /* Handle LLC frame 3 */ memset(buf, 3, sizeof(buf)); - rc = gprs_rlcmac_dl_tbf::handle(bts, tlli, 0, imsi, ms_class, + rc = gprs_rlcmac_dl_tbf::handle(bts, tlli, 0, imsi, ms_class, 0, delay_csec, buf, sizeof(buf)); OSMO_ASSERT(rc >= 0); @@ -693,7 +693,7 @@ static void send_dl_data(BTS *the_bts, uint32_t tlli, const char *imsi, ms = the_bts->ms_store().get_ms(tlli, 0, imsi); - gprs_rlcmac_dl_tbf::handle(the_bts->bts_data(), tlli, 0, imsi, 0, + gprs_rlcmac_dl_tbf::handle(the_bts->bts_data(), tlli, 0, imsi, 0, 0, 1000, data, data_size); ms = the_bts->ms_by_imsi(imsi); -- cgit v1.2.3