Update TS 04.60 references to new TS 44.060

Change-Id: Ib7c3a74b502b2251da2f7b9d6d711f3e32133bc3
This commit is contained in:
Pau Espin Pedrol 2021-02-01 13:06:45 +01:00
parent 3877848e22
commit 05be90367a
2 changed files with 4 additions and 4 deletions

View File

@ -850,7 +850,7 @@ void Encoding::encode_rbb(const char *show_rbb, uint8_t *rbb)
// RECEIVE_BLOCK_BITMAP
for (int i = 0; i < 64; i++) {
/* Set bit at the appropriate position (see 3GPP TS 04.60 9.1.8.1) */
/* Set bit at the appropriate position (see 3GPP TS 44.060 9.1.8.1) */
if (show_rbb[i] == 'R')
rbb_byte |= 1<< (7-(i%8));
@ -877,7 +877,7 @@ static void write_packet_ack_nack_desc_gprs(
bitvec_write_field(dest, &wp, window->ssn(), 7); // STARTING_SEQUENCE_NUMBER
for (int i = 0; i < 64; i++) {
/* Set bit at the appropriate position (see 3GPP TS 04.60 9.1.8.1) */
/* Set bit at the appropriate position (see 3GPP TS 44.060 9.1.8.1) */
bool is_ack = (rbb[i] == 'R');
bitvec_write_field(dest, &wp, is_ack, 1);
}
@ -1053,7 +1053,7 @@ static void write_packet_ack_nack_desc_egprs(
bow ? ", BOW" : "", eow ? ", EOW" : "");
for (i = urbb_len; i > 0; i--) {
/* Set bit at the appropriate position (see 3GPP TS 04.60 12.3.1) */
/* Set bit at the appropriate position (see 3GPP TS 44.060 12.3.1) */
bool is_ack = window->m_v_n.is_received(esn_crbb + i);
bitvec_write_field(dest, &wp, is_ack, 1);
}

View File

@ -376,7 +376,7 @@ struct gprs_rlc_ul_window: public gprs_rlc_window {
};
extern "C" {
/* TS 04.60 10.2.2 */
/* TS 44.060 10.2.2 */
#if OSMO_IS_LITTLE_ENDIAN
struct rlc_ul_header {
uint8_t r:1,