aboutsummaryrefslogtreecommitdiffstats
path: root/src/rlc.h
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2016-01-11 12:53:08 +0100
committerJacob Erlbeck <jerlbeck@sysmocom.de>2016-02-01 13:58:15 +0100
commit92ae6d19c909296e77e40dd951939b3a01d61391 (patch)
tree1830b78f0200e95729d6ec8c6994ee729128f1e4 /src/rlc.h
parent18504477cabb5b9169bd11781e82da6bd843d040 (diff)
rlc: Add info fields for downlink
This commit extends gprs_rlc_data_info and gprs_rlc_data_block_info by the fields required for downlink RLC data messages. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/rlc.h')
-rw-r--r--src/rlc.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/rlc.h b/src/rlc.h
index 42c13073..0cd7593a 100644
--- a/src/rlc.h
+++ b/src/rlc.h
@@ -65,7 +65,7 @@ struct gprs_rlc_data_block_info {
unsigned int bsn;
unsigned int ti;
unsigned int e;
- unsigned int cv;
+ unsigned int cv; /* FBI == 1 <=> CV == 0 */
unsigned int pi;
unsigned int spb;
};
@@ -77,6 +77,10 @@ struct gprs_rlc_data_info {
unsigned int tfi;
unsigned int cps;
unsigned int rsb;
+ unsigned int usf;
+ unsigned int es_p;
+ unsigned int rrbp;
+ unsigned int pr;
unsigned int num_data_blocks;
unsigned int data_offs_bits[2];
struct gprs_rlc_data_block_info block_info[2];