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
This commit is contained in:
Jacob Erlbeck 2016-01-11 12:53:08 +01:00
parent 22f8087b98
commit cc34a5b43f
1 changed files with 5 additions and 1 deletions

View File

@ -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];