aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@espeweb.net>2021-02-01 13:06:45 +0100
committerPau Espin Pedrol <pespin@espeweb.net>2021-02-01 13:06:45 +0100
commit05be90367af45107f8542758806a8847576fb1d7 (patch)
treea7443d01a5e8fb40c070cbd1e3da2f3deb043b51 /src
parent3877848e221038135393cce098bc8908e5845f81 (diff)
Update TS 04.60 references to new TS 44.060
Diffstat (limited to 'src')
-rw-r--r--src/encoding.cpp6
-rw-r--r--src/rlc.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/encoding.cpp b/src/encoding.cpp
index ce38950e..a5e7f8af 100644
--- a/src/encoding.cpp
+++ b/src/encoding.cpp
@@ -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);
}
diff --git a/src/rlc.h b/src/rlc.h
index 187a70ee..bcc738ce 100644
--- a/src/rlc.h
+++ b/src/rlc.h
@@ -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,