aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2016-05-30 19:53:13 +0200
committerHarald Welte <laforge@gnumonks.org>2016-06-01 13:38:28 +0000
commit68e2c6375e68782cd9b5e2fbde0805eea15d4ffd (patch)
tree4fd199cfc4fe58bf015826ac96a5e1f700e44675
parentcb846ecbbc1204ab6b20a5e16341568a3f2c0337 (diff)
rlc.h: correct gprs_rlc_data comment
It's the block data, not the history. Also add including LI headers. Change-Id: Id4d99d1d21c7fa372771fd569d87bbcf2c6b6d22 Reviewed-on: https://gerrit.osmocom.org/144 Reviewed-by: Harald Welte <laforge@gnumonks.org> Tested-by: Jenkins Builder
-rw-r--r--src/rlc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlc.h b/src/rlc.h
index 03659da8..ad10b3ab 100644
--- a/src/rlc.h
+++ b/src/rlc.h
@@ -113,9 +113,9 @@ struct gprs_rlc_data {
uint8_t *prepare(size_t block_data_length);
void put_data(const uint8_t *data, size_t len);
- /* block history */
+ /* block data including LI headers */
uint8_t block[RLC_MAX_LEN];
- /* block len of history */
+ /* block data len including LI headers*/
uint8_t len;
struct gprs_rlc_data_block_info block_info;